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
stranger: 2012-10-30 11:42:36

Sometimes on spoj JAVA or PYTHON is much better than C.

Last edit: 2012-10-30 11:42:58
himanshu: 2012-10-22 11:59:06

remeber to initialse the sum=0 in each test case it cause me 13 wans :)

Kevin Sebastian: 2012-10-08 08:19:55

<No code pasting in the comments>

Last edit: 2012-12-07 08:37:45
Gandaro: 2012-09-08 12:26:36

You should really put some more information in the problem: How big can "T" be? How big can "N" be? How many candies can one child have?

secret22: 2012-08-31 09:00:53

finally ac... got many wrong answers as i did not put the new line character after yes and no.. :(

Sumit Kumar Satnalika: 2012-07-23 15:03:52

guys i m using long long int and also doing s = (s + a) % n....still it is showing wrong answer

StupidGuy: 2012-07-08 00:12:57

@Rifai Yukishiro
SUM all will be over long long int.

xxx: 2012-06-16 19:20:15

Thanks nilyashu .......finally AC...!!!!!
guys i req u 2 use lon lon and
sum=(sum+num)%n

Pranshul Agarwal: 2012-05-31 04:52:25

thnx nilaysahu and coder

Darky: 2012-04-01 21:16:04

Fooh..finally AC!

Last edit: 2012-04-16 11:23:04

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