結果

問題 No.1219 Mancala Combo
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-09-04 22:25:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,800 KB
実行使用メモリ 104,416 KB
最終ジャッジ日時 2024-11-26 14:37:55
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N, = map(int, input().split())
N+=1
X = [0] + list(map(int, input().split()))
for i in range(1, N):
    if X[i] > i:
        print("No")
        sys.exit()
c = 0
for i in range(N-1, 0, -1):
    if X[i] + c == 0:
        continue
    if (X[i] + c) % i == 0:
        c += (X[i] + c)//i
        continue
    print("No")
    sys.exit()
print("Yes")
0