結果

問題 No.2451 Redistribute Integers
ユーザー ks2mks2m
提出日時 2023-09-01 23:07:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 59,816 KB
最終ジャッジ日時 2024-06-11 11:05:16
合計ジャッジ時間 18,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,124 KB
testcase_01 AC 132 ms
41,224 KB
testcase_02 AC 133 ms
40,844 KB
testcase_03 AC 136 ms
40,992 KB
testcase_04 AC 1,227 ms
58,744 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
41,100 KB
testcase_08 AC 1,106 ms
59,816 KB
testcase_09 AC 130 ms
40,980 KB
testcase_10 AC 158 ms
41,592 KB
testcase_11 AC 188 ms
42,180 KB
testcase_12 WA -
testcase_13 AC 1,267 ms
59,116 KB
testcase_14 AC 1,339 ms
59,684 KB
testcase_15 AC 1,000 ms
58,260 KB
testcase_16 AC 972 ms
58,044 KB
testcase_17 WA -
testcase_18 AC 1,200 ms
59,328 KB
testcase_19 WA -
testcase_20 AC 1,223 ms
58,556 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		long sum = 0;
		for (int i = 0; i < n; i++) {
			sum += a[i];
		}
		if (sum % n == 0) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0