結果

問題 No.649 ここでちょっとQK!
ユーザー MineMine
提出日時 2022-03-02 16:16:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,216 ms / 3,000 ms
コード長 597 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-07-16 08:34:42
合計ジャッジ時間 16,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 1,216 ms
10,752 KB
testcase_04 AC 865 ms
18,688 KB
testcase_05 AC 895 ms
18,688 KB
testcase_06 AC 790 ms
18,688 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 476 ms
14,208 KB
testcase_13 AC 464 ms
14,208 KB
testcase_14 AC 461 ms
13,952 KB
testcase_15 AC 501 ms
14,080 KB
testcase_16 AC 418 ms
14,336 KB
testcase_17 AC 514 ms
14,592 KB
testcase_18 AC 544 ms
14,848 KB
testcase_19 AC 617 ms
15,232 KB
testcase_20 AC 657 ms
15,484 KB
testcase_21 AC 718 ms
15,744 KB
testcase_22 AC 767 ms
16,128 KB
testcase_23 AC 828 ms
16,384 KB
testcase_24 AC 875 ms
16,768 KB
testcase_25 AC 923 ms
17,024 KB
testcase_26 AC 959 ms
17,408 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 33 ms
10,880 KB
testcase_30 AC 477 ms
13,952 KB
testcase_31 AC 450 ms
14,208 KB
testcase_32 AC 27 ms
10,880 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

q, k = map(int, input().split())
k_elements = [] #max
tmp = [] #min
for _ in range(q):
    que = list(map(int, input().split()))
    if que[0] == 1:
        v = que[1]
        heapq.heappush(k_elements, -v)
        if len(k_elements) > k:
            maxv = -heapq.heappop(k_elements)
            heapq.heappush(tmp, maxv)
    else:
        if len(k_elements) != k:
            print(-1)
        else:
            maxv = -heapq.heappop(k_elements)
            print(maxv)
            if tmp:
                minv = heapq.heappop(tmp)
                heapq.heappush(k_elements, -minv)
0