結果

問題 No.649 ここでちょっとQK!
ユーザー anagohirameanagohirame
提出日時 2020-09-04 12:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 3,000 ms
コード長 484 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 85,456 KB
最終ジャッジ日時 2024-05-04 00:53:36
合計ジャッジ時間 8,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,476 KB
testcase_01 AC 38 ms
54,124 KB
testcase_02 AC 38 ms
53,480 KB
testcase_03 AC 88 ms
75,796 KB
testcase_04 AC 191 ms
84,076 KB
testcase_05 AC 184 ms
85,456 KB
testcase_06 AC 155 ms
81,144 KB
testcase_07 AC 39 ms
53,068 KB
testcase_08 AC 39 ms
52,532 KB
testcase_09 AC 39 ms
53,904 KB
testcase_10 AC 38 ms
53,628 KB
testcase_11 AC 39 ms
53,144 KB
testcase_12 AC 192 ms
80,784 KB
testcase_13 AC 177 ms
81,856 KB
testcase_14 AC 178 ms
80,776 KB
testcase_15 AC 234 ms
82,240 KB
testcase_16 AC 174 ms
79,028 KB
testcase_17 AC 219 ms
79,836 KB
testcase_18 AC 229 ms
80,204 KB
testcase_19 AC 240 ms
80,912 KB
testcase_20 AC 252 ms
81,612 KB
testcase_21 AC 262 ms
82,496 KB
testcase_22 AC 264 ms
83,000 KB
testcase_23 AC 288 ms
83,292 KB
testcase_24 AC 293 ms
84,616 KB
testcase_25 AC 299 ms
85,156 KB
testcase_26 AC 305 ms
85,068 KB
testcase_27 AC 60 ms
63,652 KB
testcase_28 AC 58 ms
65,276 KB
testcase_29 AC 57 ms
64,800 KB
testcase_30 AC 210 ms
80,984 KB
testcase_31 AC 209 ms
79,188 KB
testcase_32 AC 39 ms
52,816 KB
testcase_33 AC 40 ms
54,496 KB
testcase_34 AC 40 ms
53,644 KB
testcase_35 AC 39 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

n, k = map(int, input().split())
q1, q2 = [], []

def add(x):
	heappush(q1, -x)
	if len(q1) > k:
		tmp = heappop(q1)
		heappush(q2, -tmp)
	return

def remove():
	if len(q1) < k:
		return -1
	else:
		res = heappop(q1)
		if q2:
			nxt = heappop(q2)
			heappush(q1, -nxt)
		return -res

for _ in range(n):
	t = input().split()
	if len(t) == 2:
		add(int(t[1]))
	else:
		print(remove())
0