結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,680 KB
testcase_01 AC 34 ms
51,116 KB
testcase_02 AC 34 ms
51,432 KB
testcase_03 AC 33 ms
52,364 KB
testcase_04 AC 35 ms
52,760 KB
testcase_05 AC 34 ms
52,128 KB
testcase_06 AC 34 ms
51,304 KB
testcase_07 AC 33 ms
52,344 KB
testcase_08 AC 33 ms
53,108 KB
testcase_09 AC 34 ms
52,092 KB
testcase_10 AC 33 ms
52,036 KB
testcase_11 AC 34 ms
52,952 KB
testcase_12 AC 34 ms
52,124 KB
testcase_13 AC 36 ms
52,016 KB
testcase_14 AC 33 ms
52,848 KB
testcase_15 AC 35 ms
52,416 KB
testcase_16 AC 35 ms
52,108 KB
testcase_17 AC 68 ms
87,460 KB
testcase_18 AC 64 ms
88,980 KB
testcase_19 AC 58 ms
83,936 KB
testcase_20 AC 68 ms
92,240 KB
testcase_21 AC 56 ms
81,108 KB
testcase_22 AC 63 ms
86,360 KB
testcase_23 AC 65 ms
95,772 KB
testcase_24 AC 60 ms
82,312 KB
testcase_25 AC 58 ms
83,088 KB
testcase_26 AC 67 ms
89,372 KB
testcase_27 AC 72 ms
99,692 KB
testcase_28 AC 77 ms
101,728 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