結果

問題 No.1219 Mancala Combo
ユーザー roarisroaris
提出日時 2020-09-05 04:02:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 102,280 KB
最終ジャッジ日時 2024-11-27 06:06:36
合計ジャッジ時間 3,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,996 KB
testcase_01 AC 38 ms
52,972 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 39 ms
51,996 KB
testcase_04 AC 39 ms
52,644 KB
testcase_05 AC 39 ms
53,016 KB
testcase_06 AC 39 ms
53,784 KB
testcase_07 AC 38 ms
52,140 KB
testcase_08 AC 39 ms
52,188 KB
testcase_09 AC 38 ms
52,828 KB
testcase_10 AC 42 ms
53,492 KB
testcase_11 AC 38 ms
53,524 KB
testcase_12 AC 40 ms
52,572 KB
testcase_13 AC 39 ms
52,148 KB
testcase_14 AC 39 ms
52,640 KB
testcase_15 AC 39 ms
52,492 KB
testcase_16 AC 39 ms
53,116 KB
testcase_17 AC 66 ms
87,252 KB
testcase_18 AC 73 ms
88,728 KB
testcase_19 AC 65 ms
83,780 KB
testcase_20 AC 76 ms
90,776 KB
testcase_21 AC 63 ms
80,700 KB
testcase_22 AC 70 ms
85,772 KB
testcase_23 AC 72 ms
93,600 KB
testcase_24 AC 65 ms
82,580 KB
testcase_25 AC 64 ms
82,632 KB
testcase_26 AC 73 ms
88,588 KB
testcase_27 AC 80 ms
99,688 KB
testcase_28 AC 89 ms
102,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

print('Yes')
0