您的位置:首页 > 其它

CodeForces 246B B. Increase and Decrease【思维】

2016-05-21 22:03 549 查看
B. Increase and Decrease

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

Polycarpus has an array, consisting of n integers a1, a2, ..., an.
Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that Polycarpus performs the following operation multiple times:

he chooses two elements of the array ai, aj (i ≠ j);

he simultaneously increases number ai by 1 and
decreases number aj by 1,
that is, executes ai = ai + 1and aj = aj - 1.

The given operation changes exactly two distinct array elements. Polycarpus can apply the described operation an infinite number of times.

Now he wants to know what maximum number of equal array elements he can get if he performs an arbitrary number of such operation. Help Polycarpus.

Input

The first line contains integer n (1 ≤ n ≤ 105)
— the array size. The second line contains space-separated integers a1, a2, ..., an (|ai| ≤ 104)
— the original array.

Output

Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.

Examples

input
2
2 1


output
1


input
31 4 1


output
3


只要能想明白,那么这道题就是大水......

按图中给出的操作方式,只要能整除,肯定是可以平均分开的.....

否则就把多于的放在一个数上...强势背锅....

/* http://blog.csdn.net/liuke19950717 */
#include<cstdio>
int main()
{
int n;
while(~scanf("%d",&n))
{
int sum=0;
for(int i=0;i<n;++i)
{
int tp;
scanf("%d",&tp);
sum+=tp;
}
int ans=n;
if(sum%n)
{
ans=n-1;
}
printf("%d\n",ans);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: