結果

問題 No.504 ゲーム大会(ランキング)
ユーザー n3k2t1n3k2t1
提出日時 2019-07-22 00:53:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 320 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,336 KB
最終ジャッジ日時 2024-06-23 06:29:32
合計ジャッジ時間 5,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,824 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush, heapify

N = int(input())

pq = []

for i in range(N):
    a = int(input())
    heappush(pq, (-a, i))
    pq2 = []
    for j in range(i + 1):
        p = heappop(pq)
        pq2.append(p)
        if p[1] == 0:
            print(j + 1)
            break
    pq += pq2
    heapify(pq)
0