- Time limit: 1.00 s
- Memory limit: 512 MB
There are sticks with some lengths. Your task is to modify the sticks so that each stick has the same length.
You can either lengthen and shorten each stick. Both operations cost where is the difference between the new and original length.
What is the minimum total cost?
Input
The first input line contains an integer : the number of sticks.
Then there are integers: : the lengths of the sticks.
Output
Print one integer: the minimum total cost.
Constraints
Example
Input:
5 2 3 1 5 2
Output:
5