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
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.

Anushka: 2016-06-29 20:27:15

AC with python

baadshah_: 2016-06-21 09:32:27

Replaced cin and cout with scanf and prinf and finally it worked!!!(AC)

xinnix: 2016-06-17 15:45:23

Long long int won't work, you need more. Cause sum is larger than google(>100 digits)

top_gun007: 2016-06-06 09:08:44

comments could be mis-leading..lol

shady313: 2016-06-03 18:08:23

input and output constraint..??...never mind ...solved it ..

Last edit: 2016-06-04 12:32:43
blueranger: 2016-06-02 19:53:49

C++ programmers use unsigned long long ... R = (I+R)%N

Last edit: 2016-06-02 19:54:27
supertramp_sid: 2016-05-23 10:28:14

Very nice question. taught an interesting way to use modulo operator


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