#Lutece0491. Tricks in Bits

Tricks in Bits

Migrated from Lutece 491 Tricks in Bits

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Given NN unsigned 6464-bit integers, you can bitwise NOT each or not. Then you need to add operations selected from bitwise XOR, bitwise OR and bitwise AND, between any two successive integers and calculate the result. Your job is to make the result as small as possible.

Input

The first line of the input is TT (no more than 10001000), which stands for the number of test cases you need to solve.

Then TT blocks follow. The first line of each block contains a single number NN (1N1001 \leq N \leq 100) indicating the number of unsigned 6464-bit integers. Then nn integers follow in the next line.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and counts from 11. Then output the answer.

Samples

2
3
1 2 3
2
3 6
Case #1: 0
Case #2: 1

Note

  • Case #11: 1|2^3 = 0
  • Case #22: 3&(~6) = 1

The bitwise NOT, is a unary operation that performs logical negation on each bit, forming the ones' complement of the given binary value. Digits which were 00 become 11, and vice versa.

The bitwise OR takes two bit patterns of equal length, and produces another one of the same length by matching up corresponding bits (the first of each; the second of each; and so on) and performing the logical inclusive or operation on each pair of corresponding bits. In each pair, the result is 11 if the first bit is 11 or the second bit is 11 or both bits are 11; otherwise, the result is 00.

The bitwise XOR takes two bit patterns of equal length and performs the logical XOR operation on each pair of corresponding bits. The result in each position is 11 if the two bits are different, and 00 if they are the same.

Resources

Sichuan State Programming Contest 2011