CF1676B.Equal Candies

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn boxes with different quantities of candies in each of them. The ii -th box has aia_i candies inside.

You also have nn friends that you want to give the candies to, so you decided to give each friend a box of candies. But, you don't want any friends to get upset so you decided to eat some (possibly none) candies from each box so that all boxes have the same quantity of candies in them. Note that you may eat a different number of candies from different boxes and you cannot add candies to any of the boxes.

What's the minimum total number of candies you have to eat to satisfy the requirements?

输入格式

The first line contains an integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The first line of each test case contains an integer nn ( 1n501 \leq n \leq 50 ) — the number of boxes you have.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1071 \leq a_i \leq 10^7 ) — the quantity of candies in each box.

输出格式

For each test case, print a single integer denoting the minimum number of candies you have to eat to satisfy the requirements.

输入输出样例

  • 输入#1

    5
    5
    1 2 3 4 5
    6
    1000 1000 5 1000 1000 1000
    10
    1 2 3 5 1 2 7 9 13 5
    3
    8 8 8
    1
    10000000

    输出#1

    10
    4975
    38
    0
    0

说明/提示

For the first test case, you can eat 11 candy from the second box, 22 candies from the third box, 33 candies from the fourth box and 44 candies from the fifth box. Now the boxes have [1,1,1,1,1][1, 1, 1, 1, 1] candies in them and you ate 0+1+2+3+4=100 + 1 + 2 + 3 + 4 = 10 candies in total so the answer is 1010 .

For the second test case, the best answer is obtained by making all boxes contain 55 candies in them, thus eating 995+995+0+995+995+995=4975995 + 995 + 0 + 995 + 995 + 995 = 4975 candies in total.

首页