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 NONote: the input file will not exceed 1MB.
hide comments
ashu05:
2015-10-11 18:46:32
Dear problem maker, please remove extra spaces so that code may work for python |
|
nonushikhar:
2015-10-10 00:49:25
got pile of wa........why????.......becuz wasnt initializing sum=0 for every iteratn :( |
|
sandy:
2015-10-02 10:24:47
beware of overflow :) |
|
subbu33:
2015-09-27 14:01:02
Could someone tell me why total%sum doesn't work? |
|
satya_jha123:
2015-09-09 05:25:21
if you do sum=sum+candy and outside for loop do the modulus part it gives wrong answer why? |
|
pvsmpraveen:
2015-09-05 14:06:09
Got AC!..... For those who is getting WA ---> " Sum of long long int's May be greater than long long int :) " , Impressive use of Modulus |
|
Advitiya:
2015-08-25 22:20:57
beware of \n :'( cost me 2 wa |
|
mehul712:
2015-08-23 17:18:41
sum might exceed the limit of long long int.... Be careful. Last edit: 2015-08-23 17:19:01 |
|
shubham agrawal:
2015-08-18 12:08:29
yup @xpshekhar |
|
xpshekhar:
2015-08-18 09:56:48
Smart use of modulo
|
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 |