#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 has numbers ; set has numbers . Let
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 (), which stands for the number of test cases you need to solve.
Every test case begins with an integer (), then followed by positive integers on the next line, these numbers will not exceed .
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . 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