結果

問題 No.1219 Mancala Combo
ユーザー c-yanc-yan
提出日時 2020-09-04 21:56:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 184,320 KB
最終ジャッジ日時 2024-11-26 12:43:29
合計ジャッジ時間 38,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,600 KB
testcase_01 AC 40 ms
153,088 KB
testcase_02 AC 39 ms
57,472 KB
testcase_03 AC 39 ms
153,472 KB
testcase_04 AC 115 ms
81,664 KB
testcase_05 AC 90 ms
174,208 KB
testcase_06 AC 95 ms
81,280 KB
testcase_07 AC 87 ms
179,712 KB
testcase_08 AC 105 ms
81,536 KB
testcase_09 AC 37 ms
146,560 KB
testcase_10 AC 39 ms
57,856 KB
testcase_11 AC 93 ms
174,508 KB
testcase_12 AC 49 ms
66,944 KB
testcase_13 AC 89 ms
184,320 KB
testcase_14 AC 38 ms
57,088 KB
testcase_15 AC 38 ms
147,456 KB
testcase_16 AC 38 ms
57,600 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:
        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