結果

問題 No.649 ここでちょっとQK!
ユーザー tktk_snsntktk_snsn
提出日時 2020-07-15 20:22:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 612 ms / 3,000 ms
コード長 538 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-11-22 10:24:53
合計ジャッジ時間 12,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 432 ms
10,752 KB
testcase_04 AC 551 ms
18,432 KB
testcase_05 AC 562 ms
18,432 KB
testcase_06 AC 469 ms
18,432 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 294 ms
13,952 KB
testcase_13 AC 278 ms
13,952 KB
testcase_14 AC 270 ms
13,824 KB
testcase_15 AC 314 ms
13,952 KB
testcase_16 AC 237 ms
14,080 KB
testcase_17 AC 305 ms
14,336 KB
testcase_18 AC 342 ms
14,720 KB
testcase_19 AC 382 ms
15,104 KB
testcase_20 AC 412 ms
15,360 KB
testcase_21 AC 443 ms
15,616 KB
testcase_22 AC 463 ms
16,128 KB
testcase_23 AC 510 ms
16,256 KB
testcase_24 AC 525 ms
16,820 KB
testcase_25 AC 571 ms
17,024 KB
testcase_26 AC 612 ms
17,280 KB
testcase_27 AC 32 ms
10,624 KB
testcase_28 AC 32 ms
10,496 KB
testcase_29 AC 33 ms
10,624 KB
testcase_30 AC 302 ms
13,824 KB
testcase_31 AC 264 ms
13,952 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 30 ms
10,496 KB
testcase_34 AC 31 ms
10,496 KB
testcase_35 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
input = sys.stdin.readline

Q, K = map(int, input().split())
low = []
high = []
for _ in range(Q):
    query = list(map(int, input().split()))
    if len(query) == 2:
        heapq.heappush(low, -query[1])
        if len(low) > K:
            x = -heapq.heappop(low)
            heapq.heappush(high, x)
    else:
        if len(low) < K:
            print(-1)
        else:
            print(-heapq.heappop(low))
            if high:
                x = heapq.heappop(high)
                heapq.heappush(low, -x)
0