結果

問題 No.1219 Mancala Combo
ユーザー chielochielo
提出日時 2020-09-04 21:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 102,328 KB
最終ジャッジ日時 2024-05-04 21:45:06
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,088 KB
testcase_01 AC 34 ms
52,948 KB
testcase_02 AC 33 ms
51,888 KB
testcase_03 AC 33 ms
53,356 KB
testcase_04 AC 32 ms
52,728 KB
testcase_05 AC 34 ms
53,880 KB
testcase_06 AC 33 ms
52,836 KB
testcase_07 AC 33 ms
52,072 KB
testcase_08 AC 32 ms
53,012 KB
testcase_09 AC 34 ms
53,484 KB
testcase_10 AC 34 ms
52,080 KB
testcase_11 AC 35 ms
52,756 KB
testcase_12 AC 34 ms
53,276 KB
testcase_13 AC 33 ms
51,872 KB
testcase_14 AC 34 ms
52,276 KB
testcase_15 AC 34 ms
52,284 KB
testcase_16 AC 34 ms
52,556 KB
testcase_17 AC 60 ms
87,304 KB
testcase_18 AC 68 ms
88,756 KB
testcase_19 AC 62 ms
85,176 KB
testcase_20 AC 70 ms
92,052 KB
testcase_21 AC 56 ms
81,220 KB
testcase_22 AC 62 ms
85,440 KB
testcase_23 AC 66 ms
94,792 KB
testcase_24 AC 60 ms
82,876 KB
testcase_25 AC 56 ms
83,600 KB
testcase_26 AC 67 ms
89,648 KB
testcase_27 AC 76 ms
100,212 KB
testcase_28 AC 87 ms
102,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
c = 0
for i in range(n - 1, -1, -1):
    if (a[i] + c) % (i + 1) != 0:
        print('No')
        exit()
    c += (a[i] + c) // (i + 1)
print('Yes')
0