結果

問題 No.1219 Mancala Combo
ユーザー chineristACchineristAC
提出日時 2020-10-08 20:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-07-20 06:06:03
合計ジャッジ時間 3,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 46 ms
51,456 KB
testcase_02 AC 47 ms
51,584 KB
testcase_03 AC 42 ms
51,200 KB
testcase_04 AC 43 ms
51,328 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 41 ms
51,584 KB
testcase_14 AC 42 ms
51,584 KB
testcase_15 AC 41 ms
51,712 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 78 ms
86,528 KB
testcase_18 AC 81 ms
89,088 KB
testcase_19 AC 73 ms
83,456 KB
testcase_20 AC 85 ms
91,520 KB
testcase_21 AC 68 ms
80,256 KB
testcase_22 AC 78 ms
84,864 KB
testcase_23 AC 84 ms
94,336 KB
testcase_24 AC 74 ms
82,432 KB
testcase_25 AC 71 ms
83,200 KB
testcase_26 AC 81 ms
88,576 KB
testcase_27 AC 88 ms
98,560 KB
testcase_28 AC 97 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

S = 0
for i in range(N-1,-1,-1):
    if (A[i] + S)%(i+1):
        exit(print("No"))
    else:
        S += (A[i]+S)//(i+1)

print("Yes")
0