#Lutece0495. LJUTNJA

LJUTNJA

Migrated from Lutece 495 LJUTNJA

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

Children in a kindergarten have received a large sack containing MM candies. It has been decided that the candies are to be distributed among NN children.

Each child has stated the number of candies that it wants. If a child isn’t given the amount of candy it wants, it will get angry. In fact it’ll get angrier for each candy it is deprived of. Some speculate that it’s anger will be equal to the square of the number of candy it is deprived of. For instance, if Mirko states that he wants 3232 candies but receives only 2929, he would be missing 33 candies, so his anger would be equal to 99.

Unfortunately, there is an insufficient amount of candy to satisfy all children. Therefore, the candies should be distributed in such a way that the sum of the children’s anger is minimal.

Input

The first line contains two integers, MM (1M2×1091 \leq M \leq 2\times 10^9 ) and NN (1N1000001 \leq N \leq 100 000).

The following NN lines contain integers (one per line) which represent the wishes of the children. Those numbers are all strictly less than 2×1092\times 10^9 , and their sum always exceeds MM.

Output

The first and only line of output must contain the minimum sum of the children’s anger.

Note: The test cases will ensure that the result fits in a 6464-bit unsigned integer: int64 in Pascal, long long in C/C++, long in Java.

Samples

5 3 
1 
3 
2
1
10 4 
4 
5 
2 
3
4

Note

Test cases worth 40%40\% of total points have MM not greater than 200000200 000.

Test cases worth 70%70\% of total points have no child state that it wants more than 100000100 000 candies.

Test cases worth 80%80\% of total points have at least one of the above stated constraints will be met.

Resources

COCI 2010/2011, 1st round, October 23rd 2010, Author: Adrian Satja Kurdija