CF758A.Holiday Of Equality

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury.

Totally in Berland there are nn citizens, the welfare of each of them is estimated as the integer in aia_{i} burles (burle is the currency in Berland).

You are the royal treasurer, which needs to count the minimum charges of the kingdom on the king's present. The king can only give money, he hasn't a power to take away them.

输入格式

The first line contains the integer nn ( 1<=n<=1001<=n<=100 ) — the number of citizens in the kingdom.

The second line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} , where aia_{i} ( 0<=ai<=1060<=a_{i}<=10^{6} ) — the welfare of the ii -th citizen.

输出格式

In the only line print the integer SS — the minimum number of burles which are had to spend.

输入输出样例

  • 输入#1

    5
    0 1 2 3 4
    

    输出#1

    10
  • 输入#2

    5
    1 1 0 1 1
    

    输出#2

    1
  • 输入#3

    3
    1 3 1
    

    输出#3

    4
  • 输入#4

    1
    12
    

    输出#4

    0

说明/提示

In the first example if we add to the first citizen 44 burles, to the second 33 , to the third 22 and to the fourth 11 , then the welfare of all citizens will equal 44 .

In the second example it is enough to give one burle to the third citizen.

In the third example it is necessary to give two burles to the first and the third citizens to make the welfare of citizens equal 33 .

In the fourth example it is possible to give nothing to everyone because all citizens have 1212 burles.

首页