結果

問題 No.1219 Mancala Combo
ユーザー rlangevinrlangevin
提出日時 2023-02-23 22:54:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 101,716 KB
最終ジャッジ日時 2024-07-23 16:09:12
合計ジャッジ時間 2,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,660 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 37 ms
52,944 KB
testcase_03 AC 36 ms
52,404 KB
testcase_04 WA -
testcase_05 AC 36 ms
53,032 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,440 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,524 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,624 KB
testcase_12 WA -
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 36 ms
52,376 KB
testcase_15 AC 37 ms
52,616 KB
testcase_16 WA -
testcase_17 AC 68 ms
89,340 KB
testcase_18 WA -
testcase_19 AC 66 ms
85,244 KB
testcase_20 WA -
testcase_21 AC 59 ms
82,864 KB
testcase_22 WA -
testcase_23 AC 74 ms
95,468 KB
testcase_24 WA -
testcase_25 AC 63 ms
85,728 KB
testcase_26 WA -
testcase_27 AC 79 ms
100,064 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
for i in range(N):
    if A[i] > i + 1:
        print("No")
        exit()
        
cnt = 0
for i in range(N - 1, -1, -1):
    if (cnt + A[i]) % (i + 1) != 0:
        print("No")
        exit()
    cnt = (A[i] + cnt) // (i + 1)
print("Yes")
0