結果

問題 No.1219 Mancala Combo
ユーザー ronpooronpoo
提出日時 2023-08-31 08:38:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 1,231 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 101,848 KB
最終ジャッジ日時 2024-06-11 01:19:26
合計ジャッジ時間 3,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 34 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,096 KB
testcase_10 WA -
testcase_11 AC 34 ms
52,224 KB
testcase_12 WA -
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 33 ms
52,096 KB
testcase_15 AC 33 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 64 ms
87,040 KB
testcase_18 WA -
testcase_19 AC 61 ms
83,968 KB
testcase_20 WA -
testcase_21 AC 56 ms
80,768 KB
testcase_22 WA -
testcase_23 AC 71 ms
94,336 KB
testcase_24 WA -
testcase_25 AC 62 ms
83,328 KB
testcase_26 WA -
testcase_27 AC 77 ms
99,200 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
for i in range(N-1, -1, -1):
    if A[i] > i+1 or (A[i] + cnt) % (i+1) != 0:
        print('No')
        exit()
    if A[i] > 0:
        cnt += 1
print('Yes')
0