結果

問題 No.1219 Mancala Combo
ユーザー AEnAEn
提出日時 2022-05-18 11:43:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-09-16 12:37:31
合計ジャッジ時間 3,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,456 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 35 ms
51,456 KB
testcase_04 WA -
testcase_05 AC 34 ms
51,584 KB
testcase_06 WA -
testcase_07 AC 35 ms
51,712 KB
testcase_08 WA -
testcase_09 AC 34 ms
51,712 KB
testcase_10 WA -
testcase_11 AC 35 ms
51,456 KB
testcase_12 WA -
testcase_13 AC 34 ms
51,456 KB
testcase_14 AC 35 ms
51,328 KB
testcase_15 AC 35 ms
51,456 KB
testcase_16 WA -
testcase_17 AC 65 ms
86,528 KB
testcase_18 WA -
testcase_19 AC 69 ms
83,072 KB
testcase_20 WA -
testcase_21 AC 61 ms
80,256 KB
testcase_22 WA -
testcase_23 AC 79 ms
93,952 KB
testcase_24 WA -
testcase_25 AC 64 ms
82,560 KB
testcase_26 WA -
testcase_27 AC 80 ms
99,072 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sm = 0
for i in reversed(range(N)):
    if (A[i]+sm) % (i+1) == 0:
        sm += (A[i]+sm)//2
    else:
        print('No')
        exit()
print('Yes')
0