Increase and Decrease

来源:互联网 发布:js tab选项卡 编辑:程序博客网 时间:2024/05/21 22:50

Increase and Decrease

时间限制:1000 ms  |  内存限制:65535 KB
难度:1
描述

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.

输入
The first line contains integer n (1 ≤ n ≤ 10^5) — the array size. The second line contains space-separated integers a1, a2, ..., an (|ai| ≤ 10^4) — the original array.
输出
Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.
样例输入
22 131 4 1
样例输出
13

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);while (scanner.hasNext()) {int number = scanner.nextInt();int sum = 0;for (int i = 0; i < number; i++) {int temp = scanner.nextInt();sum += temp;}int result = 0;if (sum % number == 0) {result = number;} else {result = number - 1;}System.out.println(result);}}}


原创粉丝点击