PRIMEZUK - The Prime conjecture

no tags 

Euclid may have been the first to prove that there are infinitely many primes. Let's walk through his proof, as even today, it's regarded as an excellent model of reasoning.

Let us assume the converse, that there only a finite number of primes: p1, p2, ... pn. Let m = 1 + i=1Πn pi, i.e. the product of all of these primes plus one. Since this number is bigger than any of the primes on our list, m must be composite. Therefore, some prime must divide it. But which prime? In fact, m leaves a reminder of 1 when divided by any prime pi, for 1 <= i <= n. Thus, p1, p2, ... pn cannot be the complete list of primes, because if so m must also be a prime. Since this contradicts the assumption it means there cannot exist such a complete list of primes; therefore the number of primes must be infinite!

Your mathematician friend Wannabe_Fermat has come up with a conjecture which he keeps telling to anyone who is willing to lend an ear: "The number m that we come up with when multiplying any n distinct prime numbers and adding 1 to this result is also a prime". You as Wannabe_Zuckerburg, are becoming jealous as your friend's conjecture is gaining popularity and decide to come up with a program that finds counter-examples to shut him up forever.

Input

The first line contains T, the number of test cases. Each test case consists of two lines, the first line containing the number n - the number of primes in our list, and second line containing n space-separated prime numbers. Moreover, following things can be safely assumed:

1 <= T <= 10

n will be at most 9 and m can be contained in 32-bits.

Output

For each input case x, the output is of the format "Case #x: y", where y = m if m is a prime, else y is the largest prime factor of m.

Example

Input:
2
3
2 3 5
4
2 7 5 11

Output:
Case #1: 31
Case #2: 257

Explanation

Case #1 - 31 is a prime number

Case #2 - 2*5*7*11 + 1 = 771, which can be written as 3*257.


hide comments
hendrik: 2011-10-09 20:03:40

ssbc: it is stated "m can be contained in 32-bits"

sri: 2011-10-09 16:58:04

am getting wrong answer:( ??
does the result can be stored in long long in c???

Problem Solver: 2011-10-04 07:45:30

Cool task :)

:D: 2011-10-01 06:55:52

I'm not the biggest fan of prime/number theory problems, but that was very well written. Thanks!


Added by:Siddharth Kothari
Date:2011-09-25
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:own