結果

問題 No.1219 Mancala Combo
ユーザー tentententen
提出日時 2020-09-07 08:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 53,084 KB
最終ジャッジ日時 2024-11-29 10:14:53
合計ジャッジ時間 13,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,268 KB
testcase_01 AC 119 ms
40,592 KB
testcase_02 AC 129 ms
41,324 KB
testcase_03 AC 114 ms
39,848 KB
testcase_04 AC 155 ms
41,424 KB
testcase_05 AC 152 ms
41,168 KB
testcase_06 AC 140 ms
41,580 KB
testcase_07 AC 147 ms
41,316 KB
testcase_08 AC 144 ms
41,168 KB
testcase_09 AC 133 ms
40,940 KB
testcase_10 AC 135 ms
40,956 KB
testcase_11 AC 145 ms
41,192 KB
testcase_12 AC 145 ms
41,392 KB
testcase_13 AC 143 ms
41,364 KB
testcase_14 AC 130 ms
41,056 KB
testcase_15 AC 132 ms
41,300 KB
testcase_16 AC 132 ms
41,428 KB
testcase_17 AC 637 ms
49,692 KB
testcase_18 AC 701 ms
49,476 KB
testcase_19 AC 615 ms
48,640 KB
testcase_20 AC 681 ms
50,456 KB
testcase_21 AC 602 ms
48,416 KB
testcase_22 AC 607 ms
49,284 KB
testcase_23 AC 765 ms
52,044 KB
testcase_24 AC 614 ms
48,528 KB
testcase_25 AC 539 ms
47,304 KB
testcase_26 AC 636 ms
50,296 KB
testcase_27 AC 727 ms
52,744 KB
testcase_28 AC 807 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] arr = new int[n + 2];
    	for (int i = 1; i <= n; i++) {
    	    arr[i] = sc.nextInt();
    	}
    	long[] sums = new long[n + 2];
    	for (int i = n; i >= 1; i--) {
    	    sums[i] = sums[i + 1] + arr[i];
    	    if (sums[i] % i != 0) {
    	        System.out.println("No");
    	        return;
    	    }
    	}
    	System.out.println("Yes");
   }
}
0