結果

問題 No.1219 Mancala Combo
ユーザー FromBooskaFromBooska
提出日時 2023-10-16 13:16:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-09-16 22:13:35
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 WA -
testcase_05 AC 39 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 41 ms
51,712 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,120 KB
testcase_10 WA -
testcase_11 AC 39 ms
51,968 KB
testcase_12 WA -
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 38 ms
51,584 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 WA -
testcase_17 AC 72 ms
87,936 KB
testcase_18 WA -
testcase_19 AC 67 ms
84,992 KB
testcase_20 WA -
testcase_21 AC 65 ms
81,408 KB
testcase_22 WA -
testcase_23 AC 79 ms
95,360 KB
testcase_24 WA -
testcase_25 AC 68 ms
84,608 KB
testcase_26 WA -
testcase_27 AC 82 ms
99,968 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 右端の数字に着目
# 右端の数字がインデックスとマッチしていなければアウト
# そこから左に1つずつ動く、右端
# 右端からの歩数分だけの数がそこに降ってくる、そのそきに初期値と降ってくる数の和がそのインデックスの倍数必要か

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

for i in range(N-1, -1, -1):
    if A[i] == 0:
        A.pop()
    else:
        break
remainder = len(A)
#print(A, remainder)

ans = 'Yes'
cumu = 0
for i in range(remainder-1, -1, -1):
    if (A[i]+cumu)%(i+1)!=0:
        ans = 'No'
    cumu += 1
    #print('ans', ans, 'cumu', cumu)
print(ans)
0