結果

問題 No.649 ここでちょっとQK!
ユーザー skiiskii
提出日時 2018-02-22 23:19:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,179 ms / 3,000 ms
コード長 548 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-10-04 06:33:00
合計ジャッジ時間 20,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 930 ms
56,320 KB
testcase_04 AC 1,167 ms
92,416 KB
testcase_05 AC 1,047 ms
92,288 KB
testcase_06 AC 1,061 ms
93,824 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 486 ms
49,280 KB
testcase_13 AC 501 ms
49,408 KB
testcase_14 AC 510 ms
49,280 KB
testcase_15 AC 521 ms
49,408 KB
testcase_16 AC 510 ms
49,920 KB
testcase_17 AC 578 ms
53,632 KB
testcase_18 AC 665 ms
57,344 KB
testcase_19 AC 725 ms
61,312 KB
testcase_20 AC 779 ms
65,024 KB
testcase_21 AC 881 ms
68,992 KB
testcase_22 AC 910 ms
72,956 KB
testcase_23 AC 1,003 ms
76,544 KB
testcase_24 AC 1,008 ms
80,512 KB
testcase_25 AC 1,130 ms
84,352 KB
testcase_26 AC 1,179 ms
88,192 KB
testcase_27 AC 32 ms
11,008 KB
testcase_28 AC 31 ms
11,136 KB
testcase_29 AC 31 ms
11,136 KB
testcase_30 AC 508 ms
43,648 KB
testcase_31 AC 554 ms
43,776 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
q, k = map(int, input().split())
qle, qgt = [], []
querys = [map(int, input().split())  for _ in range(q)]
for words in querys:
    if next(words) == 1:
        v = next(words)
        if len(qle)<k or v<-qle[0]:
            heappush(qle, -v)
            if len(qle) > k:
                heappush(qgt, -heappop(qle))
        else:
            heappush(qgt, v)
    else:
        if len(qle) < k:
            print(-1)
        else:
            print(-heappop(qle))
            if qgt:
                heappush(qle, -heappop(qgt))
0