CF440B.Balancer

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya has kk matches, placed in nn matchboxes lying in a line from left to right. We know that kk is divisible by nn . Petya wants all boxes to have the same number of matches inside. For that, he can move a match from its box to the adjacent one in one move. How many such moves does he need to achieve the desired configuration?

输入格式

The first line contains integer nn ( 1<=n<=500001<=n<=50000 ). The second line contains nn non-negative numbers that do not exceed 10910^{9} , the ii -th written number is the number of matches in the ii -th matchbox. It is guaranteed that the total number of matches is divisible by nn .

输出格式

Print the total minimum number of moves.

输入输出样例

  • 输入#1

    6
    1 6 2 5 3 7
    

    输出#1

    12
    
首页