Increase and Decrease

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 aiaj (i ≠ j);
  • he simultaneously increases number ai by 1 and decreases number aj by 1, that is, executes ai = ai + 1 and 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.

Example

Input
2
2 1
Output
1
Input
3
1 4 1
Output

3


题意:给出一个序列,进行操作,每次选取两个数字,一个+1一个-1,问最后最多能有多少个数字是相等的。比如样例2可以变成2 2 2,所以输出3.

题解:一个数字+1,一个数字-1,保证整个序列的和是一直不变的嘛,所以你需要判断是就是把这些数字加起来得到一个sum后,对n进行取余,如果余数位0,就说明大家可以分得刚刚好,最大值就是n,输出。如果不为0,就选出一个数字,你把sum全部加到这个数字上去好了,然后其他数字全部变为某个数,得到的最大值就是n-1.所以只有两种答案。

#include<stdio.h>
#define M 100010
int main()
{
    int n,i;
    long sum=0;
    int x[M];
    scanf("%d",&n);
    for(i=0;i<n;i++)
    {
        scanf("%d",&x[i]);
        sum=sum+x[i];
    }
    if(sum%n==0)
    {
        n=n;
    }
    else n=n-1;
    printf("%d",n);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值