結果

問題 No.649 ここでちょっとQK!
ユーザー c-yanc-yan
提出日時 2021-02-15 00:15:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 420 ms / 3,000 ms
コード長 694 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-07-22 12:11:08
合計ジャッジ時間 7,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 230 ms
17,152 KB
testcase_04 AC 420 ms
18,560 KB
testcase_05 AC 263 ms
18,688 KB
testcase_06 AC 254 ms
20,224 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 165 ms
14,592 KB
testcase_13 AC 163 ms
14,592 KB
testcase_14 AC 165 ms
14,592 KB
testcase_15 AC 178 ms
14,592 KB
testcase_16 AC 163 ms
14,848 KB
testcase_17 AC 201 ms
15,104 KB
testcase_18 AC 224 ms
15,488 KB
testcase_19 AC 247 ms
15,872 KB
testcase_20 AC 269 ms
16,256 KB
testcase_21 AC 292 ms
16,512 KB
testcase_22 AC 307 ms
17,024 KB
testcase_23 AC 320 ms
17,348 KB
testcase_24 AC 338 ms
17,792 KB
testcase_25 AC 353 ms
18,176 KB
testcase_26 AC 374 ms
18,432 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 AC 163 ms
14,592 KB
testcase_31 AC 177 ms
14,720 KB
testcase_32 AC 31 ms
10,880 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from heapq import heappop, heappush

readline = stdin.readline

Q, K = map(int, readline().split())

result = []
q0 = []
q1 = []
for _ in range(Q):
    query = readline()
    if query[0] == '1':
        v = int(query[2:])
        if len(q0) < K:
            heappush(q0, -v)
        else:
            if -q0[0] > v:
                heappush(q1, -heappop(q0))
                heappush(q0, -v)
            else:
                heappush(q1, v)
    elif query[0] == '2':
        if len(q0) < K:
            result.append(-1)
        else:
            result.append(-heappop(q0))
            if len(q1) > 0:
                heappush(q0, -heappop(q1))
print(*result, sep='\n')
0