結果

問題 No.1406 Test
ユーザー ks2mks2m
提出日時 2021-02-26 22:57:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,900 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-02 15:41:49
合計ジャッジ時間 6,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,964 KB
testcase_01 AC 102 ms
53,004 KB
testcase_02 AC 110 ms
53,736 KB
testcase_03 AC 114 ms
53,716 KB
testcase_04 AC 116 ms
52,436 KB
testcase_05 AC 114 ms
54,292 KB
testcase_06 AC 103 ms
53,328 KB
testcase_07 AC 105 ms
52,776 KB
testcase_08 AC 101 ms
52,980 KB
testcase_09 AC 113 ms
54,012 KB
testcase_10 AC 114 ms
53,732 KB
testcase_11 AC 114 ms
53,948 KB
testcase_12 AC 115 ms
54,016 KB
testcase_13 AC 105 ms
53,012 KB
testcase_14 AC 114 ms
53,756 KB
testcase_15 AC 126 ms
54,160 KB
testcase_16 AC 115 ms
54,092 KB
testcase_17 AC 120 ms
54,044 KB
testcase_18 AC 117 ms
54,104 KB
testcase_19 AC 116 ms
53,892 KB
testcase_20 AC 108 ms
52,864 KB
testcase_21 AC 116 ms
54,272 KB
testcase_22 AC 102 ms
52,980 KB
testcase_23 AC 106 ms
53,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n - 1];
		for (int i = 0; i < n - 1; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int sum = 0;
		for (int i = 0; i < a.length; i++) {
			sum += a[i];
		}

		int ans = 0;
		for (int i = 0; i <= 100; i++) {
			if ((sum + i) % n == 0) {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0