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
Akhilesh Anandh: 2013-06-03 04:09:55

author: Please specify constraints in the problem. Cost me one WA

mystique_blue: 2013-05-29 05:40:49

IMP: - In the program if you proceed by simple summing then the you will encounter overflow for some test cases. (Input is big) and summation will result in values bigger than range of unsigned long long. So just look for some other way.

@author please mention the constraints.... -_-

Last edit: 2013-05-29 05:41:25
Kartik Khare: 2013-05-22 12:57:08

What should i do for the case when N = 0

AnasMourad: 2013-02-23 15:13:07

Solving a problem without knowing its constraints is a really annoying thing !

Last edit: 2014-12-30 04:14:23
Sivaraman Nagarajan: 2013-02-23 13:55:56

Nothing big in it . Just think of alternate things except summing up.

joud zouzou: 2013-02-20 13:59:30

is the input and output normal or with files?

Nick Evans: 2013-01-22 05:23:44

JAVA: Here's some help for those that need it. Includes a thorough explanation.
<snip>

Last edit: 2023-06-02 23:46:27
Unnati Gupta: 2013-01-21 11:46:42

code is working properly..but giving NZEC error in Python 2.7

Ashish: 2013-01-16 09:50:04

got it AC

Aditya Gourav: 2013-01-15 20:15:39

Really, weirdo problem!!!!!!!


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