結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 36 ms
52,712 KB
testcase_02 AC 36 ms
53,332 KB
testcase_03 AC 79 ms
75,740 KB
testcase_04 AC 166 ms
84,072 KB
testcase_05 AC 155 ms
85,204 KB
testcase_06 AC 137 ms
81,648 KB
testcase_07 AC 37 ms
53,804 KB
testcase_08 AC 36 ms
53,076 KB
testcase_09 AC 37 ms
52,960 KB
testcase_10 AC 35 ms
53,132 KB
testcase_11 AC 37 ms
53,292 KB
testcase_12 AC 157 ms
80,636 KB
testcase_13 AC 159 ms
81,356 KB
testcase_14 AC 164 ms
81,176 KB
testcase_15 AC 202 ms
82,512 KB
testcase_16 AC 153 ms
79,276 KB
testcase_17 AC 187 ms
80,016 KB
testcase_18 AC 204 ms
80,824 KB
testcase_19 AC 206 ms
81,312 KB
testcase_20 AC 210 ms
81,724 KB
testcase_21 AC 221 ms
82,496 KB
testcase_22 AC 233 ms
82,920 KB
testcase_23 AC 244 ms
83,356 KB
testcase_24 AC 254 ms
84,756 KB
testcase_25 AC 260 ms
84,964 KB
testcase_26 AC 270 ms
85,528 KB
testcase_27 AC 52 ms
64,312 KB
testcase_28 AC 51 ms
65,800 KB
testcase_29 AC 51 ms
63,544 KB
testcase_30 AC 175 ms
81,756 KB
testcase_31 AC 177 ms
79,052 KB
testcase_32 AC 36 ms
53,152 KB
testcase_33 AC 36 ms
52,564 KB
testcase_34 AC 37 ms
53,076 KB
testcase_35 AC 37 ms
54,052 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