F - Kindergarden

Languages: C, C++, Java, Haskell, Pascal, Python, JavaScript, Tiger, C#
Time & Memory limits: (details)

Children in a kindergarten have received a large sack containing $M$ candies. It has been decided that the candies are to be distributed among $N$ 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 Fito states that he wants $32$ candies but receives only $29$, he would be missing $3$ candies, so his anger would be equal to $9$.

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, $M$ $(1 \leq M \leq 2 \times 10^9)$ and $N$ $(1 \leq N \leq 100000)$. The following $N$ lines contain integers (one per line) which represent the wishes of the children. Those numbers are all strictly less than $2 \times 10^9$, and their sum always exceeds $M$.

Output

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

Sample test(s)

Input
5 3 1 3 2
Output
1
Input
10 4 4 5 2 3
Output
4