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
narutohokage_1: 2016-09-01 02:54:27

Got Many Many Wrong Answers :

My 2 Cents :

1 . Dont use float or such thing because they always mess up .Because they are not perfect.
2. Try to use a method in which you use integer only.
3. Single Child Can Have Candy That comes in long long int range . I tried long int but failed as soon as i tried long long int code accepted.
4.Try to think on your own . Do not look in comments for method.And also no tip on method.
5.Problem is really simple , the idea is really really simple all these comment will make it look like a tough problem, follow your instinct it is easy problem.
6. Use correct format specifiers .Cost me many many WA around 7.
8. Format Specifier For long long int is %lld.
9.Dont worry about rank drop when so many WA .
10. Nobody will look at rank but at your potential . So do all experiment you want to do.

sumanth2015: 2016-08-16 19:59:44

Got AC!! It seems long long int can not hold total sum value. Might be even greater than its upper limit. If you are in Java go for BigInteger or else if in C, keep reducing the sum in every iteration if possible.

abhishek_iitj: 2016-08-12 15:33:41

How to skip blank line while taking input from user in python ??

e869120: 2016-08-06 13:33:48

This is a big number problem.
This problems is very tricky for C++ people.
Because constraints wasn't written in this problem statement.

ankit1cool: 2016-08-04 21:14:42

no constraints given very poor explanation

giriprasad kemburu: 2016-08-03 19:55:09

how to read input?
From stdin or from file.
If it is file what name we should give to file.
Please help me i am beginner.

sandeep_123: 2016-07-24 15:27:47

taking modulo is key for AC ! easy one...comments helped

kiraneswar: 2016-07-13 21:18:02

How to get rid of NZEC runtime error. Solution executes on ideone but I am getting this error after uploading

imshubhamk: 2016-07-11 19:05:15

listen comments are just mis leading just keep it simple % when sum>no of inputs and don't forget to set sum to 0 again this cost me 2 wrong answer

Dilpreet: 2016-07-01 11:21:43

C++ people Use unsigned long long int .
int will give you WA.


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