CANDY3 - Candy III


A class went to a school trip. And, as usually, all N kids have got their backpacks stuffed with candy. But soon quarrels started all over the place, as some of the kids had more candies than others. Soon, the teacher realized that he has to step in: "Everybody, listen! Put all the candies you have on this table here!"

Soon, there was quite a large heap of candies on the teacher's table. "Now, I will divide the candies into N equal heaps and everyone will get one of them." announced the teacher.

"Wait, is this really possible?" wondered some of the smarter kids.

Problem specification

You are given the number of candies each child brought. Find out whether the teacher can divide the candies into N exactly equal heaps. (For the purpose of this task, all candies are of the same type.)

Input specification

The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.

Each test case looks as follows: The first line contains N : the number of children. Each of the next N lines contains the number of candies one child brought.

Output specification

For each of the test cases output a single line with a single word "YES" if the candies can be distributed equally, or "NO" otherwise.

Example

Input:
2

5
5
2
7
3
8

6
7
11
2
7
3
4

Output:
YES
NO
Note: the input file will not exceed 1MB.

hide comments
sonushahuji4: 2020-04-28 10:19:06

Problem is simple but you need to be careful while taking inputs.

Last edit: 2020-06-14 01:48:16
yourmom__: 2020-04-15 09:41:33

This problem isnt good. It does not tell us about the input limits. All you guys are saying it is good because of mod or whatever (alright, there is one good logical use of mod here, but moving on). They should mention that EVERYTHING in input will exceed 2^32. Guys use long (in java) or long long int (in c++) for every input you take. Actually I would say don't waste your time on this question.
My solution was accepted on the 5th try, after changing EVERY int in my java code to long :|

Last edit: 2020-04-15 09:42:19
roshansalian: 2020-04-13 11:27:58

Hint-SPOJ me laddu problem hai hote

sangmai: 2020-01-21 12:13:17

It should give constraints on N. Thanks @Guilherme Sena

sanjeev30798: 2020-01-12 09:43:34

use (A+B)%n=(A%n+B%n)%n

theviralv: 2019-11-02 17:16:49

AC in 3rd attempt , % does the trick!!!!

anonymei: 2019-10-26 15:21:10

Aren't you supposed to give constraints for a question which you have meant to be solved by modular arithmetic?

moh_game_dev: 2019-09-10 13:49:18

The key is that:
(a+b+c) % x = (a%x + b%x + c%x) % x

lx_lovin: 2019-08-04 22:26:31

no need to take 10^9+7 modulo
just use boost library to calculate sum

rmcr714: 2019-08-03 14:47:21

many people have said this in the previous comments but i would like to remind the java people that pls use BigInteger to store the sum of the total candies as the main trick is handling very large sums .


Added by:Fudan University Problem Setters
Date:2007-12-01
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO
Resource:IPSC 2006