結果

問題 No.1219 Mancala Combo
ユーザー c-yanc-yan
提出日時 2020-09-04 21:59:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 409 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 184,576 KB
最終ジャッジ日時 2024-11-26 12:47:05
合計ジャッジ時間 38,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 42 ms
152,192 KB
testcase_02 AC 39 ms
57,216 KB
testcase_03 AC 42 ms
153,088 KB
testcase_04 AC 119 ms
81,408 KB
testcase_05 AC 102 ms
174,336 KB
testcase_06 AC 113 ms
81,536 KB
testcase_07 AC 98 ms
179,200 KB
testcase_08 AC 112 ms
81,536 KB
testcase_09 AC 41 ms
146,816 KB
testcase_10 AC 40 ms
58,112 KB
testcase_11 AC 102 ms
173,824 KB
testcase_12 AC 54 ms
66,944 KB
testcase_13 AC 107 ms
184,576 KB
testcase_14 AC 40 ms
57,344 KB
testcase_15 AC 40 ms
147,200 KB
testcase_16 AC 38 ms
57,728 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

N, *A = map(int, open(0).read().split())

q = []
for i in range(N):
    if A[i] > i + 1:
        print('No')
        exit()
    if A[i] == i + 1:
        heappush(q, i)

while q:
    i = heappop(q)
    A[i] = 0
    for j in range(i):
        A[j] += 1
        if A[j] == j + 1:
            heappush(q, j)

if all(a == 0 for a in A):
    print('Yes')
else:
    print('No')
0