#Lutece0375. Easy Problem

Easy Problem

Migrated from Lutece 375 Easy Problem

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

There are some positive integer numbers, and you want to divide them into two nonempty sets (every integer should be in and only in one set) and get a value descripted below:

Assume that set AA has n1n_1 numbers A1,A2,,An1A_1, A_2, \cdots ,A_{n_1}; set BB has n2n_2 numbers B1,B2,,Bn2B_1, B_2, \cdots ,B_{n_2}. Let

v1=i=1n1Ain1v_1=\sum_{i=1}^{n_1}\frac{A_i}{n_1} v2=i=1n2Bin2v_2=\sum_{i=1}^{n_2}\frac{B_i}{n_2}

Then

$ans=\sum_{i=1}^{n_1}(A_i-v_2)^2+\sum_{i=1}^{n_2}(B_i-v_1)^2$

We want to know the largest ans.

Input

The first line of the input is an integer TT (T20T\leq 20), which stands for the number of test cases you need to solve.

Every test case begins with an integer NN (2N10002\leq N\leq 1000), then followed by NN positive integers on the next line, these numbers will not exceed 10001000.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and starts at 11. Then output the answer rounded to six digits after the decimal point. See sample for more details.

Samples

2
3
1 1 1
3
1 2 3
Case #1: 0.000000
Case #2: 7.250000

Resources

The 9th UESTC Programming Contest Final