結果

問題 No.1219 Mancala Combo
ユーザー ks2mks2m
提出日時 2020-09-04 22:04:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 3,071 ms
コンパイル使用メモリ 73,584 KB
実行使用メモリ 55,836 KB
最終ジャッジ日時 2024-11-26 12:53:33
合計ジャッジ時間 7,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,908 KB
testcase_01 AC 55 ms
36,760 KB
testcase_02 AC 55 ms
36,784 KB
testcase_03 AC 55 ms
36,932 KB
testcase_04 AC 55 ms
37,004 KB
testcase_05 AC 57 ms
36,880 KB
testcase_06 AC 55 ms
37,136 KB
testcase_07 AC 56 ms
36,380 KB
testcase_08 AC 58 ms
36,864 KB
testcase_09 AC 55 ms
37,012 KB
testcase_10 AC 54 ms
36,720 KB
testcase_11 AC 57 ms
36,684 KB
testcase_12 AC 56 ms
36,704 KB
testcase_13 AC 57 ms
36,864 KB
testcase_14 AC 55 ms
37,032 KB
testcase_15 AC 54 ms
36,884 KB
testcase_16 AC 56 ms
36,760 KB
testcase_17 AC 229 ms
52,200 KB
testcase_18 AC 243 ms
51,860 KB
testcase_19 AC 223 ms
51,848 KB
testcase_20 AC 238 ms
52,152 KB
testcase_21 AC 207 ms
49,628 KB
testcase_22 AC 234 ms
51,988 KB
testcase_23 AC 319 ms
55,564 KB
testcase_24 AC 225 ms
48,768 KB
testcase_25 AC 220 ms
51,092 KB
testcase_26 AC 242 ms
51,708 KB
testcase_27 AC 284 ms
55,836 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n + 1];
		for (int i = 0; i < n; i++) {
			a[i + 1] = Integer.parseInt(sa[i]);
		}
		br.close();

		int cnt = 0;
		for (int i = n; i > 0; i--) {
			int s = a[i] + cnt;
			if (s % i != 0) {
				System.out.println("No");
				return;
			}
			cnt += s / i;
		}
		System.out.println("Yes");
	}
}
0