#Lutece0920. Big Integers

Big Integers

Migrated from Lutece 920 Big Integers

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

To get big integers, we can concatenate small integers together, such as concatenate 3232 and 11 to 321321, or concatenate 33 and 2121 to 321321.

There is a set SS containing NN different integers. An integer XX is special if the following three conditions are satisfied:

  1. Choose two nonempty subsets AA and BB from SS, where AA and BB have no common elements.

  2. There is at least one way to get XX by concatenating all numbers in AA.

  3. There is at least one way to get XX by concatenating all numbers in BB.

Output the largest special integer XX.

Input

A single integer TT in the first line, indicating the number of cases.

For each case:

There are multiple test cases.

A single integer NN is given in the first line.

NN different integers a1a_1, a2a_2, ..., aNa_N are given in the second line.

1T501\leq T \leq 50

2N62 \leq N \leq 6;

0ai990 \leq a_i \leq 99, 1iN1 \leq i \leq N;

There are no leading zeros.

CF:参加div.1的同学的最终得分 = 所有参加div.2同学AA题的最高的1010个得分的平均分 + 所有参加div.2同学BB题的最高的1010个得分的平均分 + 该同学div.1AA题得分 ×div.2C题满分div.1A题满分\times \frac{div.2 C题满分}{div.1 A题满分} + 该同学div.1BB题得分 ×div.2D题满分div.1B题满分\times \frac{div.2 D题满分}{div.1 B题满分} + 该同学div.1CC题得分 ×div.2E题满分div.1C题满分\times \frac{div.2 E题满分}{div.1 C题满分} + 该同学div.1DD题得分×3\times 3 + 该同学div.1EE题得分 ×\times 55

TC:参加div.1的同学的最终得分 =所有参加div.2同学AA题的最高的1010个得分的平均分 + 该同学div.1AA题得分 ×div.2B题满分div.1A题满分\times \frac{div.2 B题满分}{div.1 A题满分} +该同学div.1BB题得分 ×div.2C题满分div.1B题满分\times \frac{div.2 C题满分}{div.1 B题满分} + 该同学div.1CC题得分 ×\times 55

Output

For each case, output "Case #i " first, ii is the case number, from 11 to TT. Then if you can get at least one special integer, output the largest one. Otherwise, output -1.

Samples

3
4
1 3 32 21
4
1 2 12 21
2
1 2
Case #1: 321
Case #2: 21
Case #3: -1

Resources

Sichuan State Programming Contest 2014