結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 1,015 ms
10,752 KB
testcase_04 AC 772 ms
18,560 KB
testcase_05 AC 761 ms
18,688 KB
testcase_06 AC 674 ms
18,688 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 407 ms
13,952 KB
testcase_13 AC 392 ms
13,824 KB
testcase_14 AC 389 ms
13,952 KB
testcase_15 AC 427 ms
13,952 KB
testcase_16 AC 365 ms
14,080 KB
testcase_17 AC 450 ms
14,592 KB
testcase_18 AC 482 ms
14,720 KB
testcase_19 AC 534 ms
14,976 KB
testcase_20 AC 580 ms
15,488 KB
testcase_21 AC 628 ms
15,616 KB
testcase_22 AC 654 ms
16,000 KB
testcase_23 AC 716 ms
16,256 KB
testcase_24 AC 773 ms
16,640 KB
testcase_25 AC 811 ms
17,024 KB
testcase_26 AC 855 ms
17,408 KB
testcase_27 AC 33 ms
10,752 KB
testcase_28 AC 34 ms
10,624 KB
testcase_29 AC 33 ms
10,752 KB
testcase_30 AC 423 ms
13,952 KB
testcase_31 AC 401 ms
14,208 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

Q, K = map(int, input().split())
low = []
high = []
for _ in range(Q):
    s = input()
    if s[0] == '1':
        n = int(s.split()[1])
        heapq.heappush(low, -n)
        if len(low) == K:
            heapq.heappush(high, -heapq.heappop(low))
    else:
        print(-1 if not high else heapq.heappop(high))
0