結果

問題 No.1219 Mancala Combo
ユーザー NoneNone
提出日時 2021-02-24 02:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 103,160 KB
最終ジャッジ日時 2024-09-22 21:52:57
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,036 KB
testcase_01 AC 36 ms
52,972 KB
testcase_02 AC 37 ms
51,980 KB
testcase_03 AC 36 ms
52,064 KB
testcase_04 AC 38 ms
52,796 KB
testcase_05 AC 37 ms
52,976 KB
testcase_06 AC 37 ms
52,624 KB
testcase_07 AC 38 ms
52,272 KB
testcase_08 AC 37 ms
53,380 KB
testcase_09 AC 37 ms
52,628 KB
testcase_10 AC 36 ms
53,336 KB
testcase_11 AC 37 ms
53,232 KB
testcase_12 AC 36 ms
52,432 KB
testcase_13 AC 37 ms
52,308 KB
testcase_14 AC 37 ms
52,608 KB
testcase_15 AC 37 ms
53,436 KB
testcase_16 AC 37 ms
52,088 KB
testcase_17 AC 65 ms
87,504 KB
testcase_18 AC 71 ms
89,692 KB
testcase_19 AC 61 ms
84,284 KB
testcase_20 AC 74 ms
92,556 KB
testcase_21 AC 60 ms
80,948 KB
testcase_22 AC 68 ms
86,524 KB
testcase_23 AC 73 ms
95,352 KB
testcase_24 AC 65 ms
83,056 KB
testcase_25 AC 63 ms
84,520 KB
testcase_26 AC 72 ms
88,784 KB
testcase_27 AC 77 ms
100,420 KB
testcase_28 AC 84 ms
103,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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