結果

問題 No.1219 Mancala Combo
ユーザー kohei2019kohei2019
提出日時 2022-07-19 22:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 103,808 KB
最終ジャッジ日時 2024-07-02 02:12:29
合計ジャッジ時間 3,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 AC 70 ms
89,088 KB
testcase_18 AC 77 ms
90,240 KB
testcase_19 AC 67 ms
85,888 KB
testcase_20 AC 80 ms
93,312 KB
testcase_21 AC 66 ms
82,304 KB
testcase_22 AC 73 ms
87,552 KB
testcase_23 AC 79 ms
97,024 KB
testcase_24 AC 70 ms
83,328 KB
testcase_25 AC 68 ms
85,248 KB
testcase_26 AC 80 ms
90,496 KB
testcase_27 AC 84 ms
101,504 KB
testcase_28 AC 92 ms
103,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = [0]+list(map(int,input().split()))
add = 0
for i in range(N):
    if lsA[i] > i:
        print('No')
        exit()
for i in range(N,0,-1):
    if (lsA[i]+add) % i == 0:  
        add += (lsA[i]+add) // i
        lsA[i] = 0
    else:
        print('No')
        exit()
print('Yes')
0