結果

問題 No.649 ここでちょっとQK!
ユーザー pluto77pluto77
提出日時 2018-02-26 11:55:40
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,586 ms / 3,000 ms
コード長 444 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-22 11:07:59
合計ジャッジ時間 19,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,528 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 498 ms
6,400 KB
testcase_04 AC 1,586 ms
12,800 KB
testcase_05 AC 776 ms
12,800 KB
testcase_06 AC 636 ms
12,672 KB
testcase_07 AC 12 ms
6,528 KB
testcase_08 AC 11 ms
6,528 KB
testcase_09 AC 12 ms
6,528 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 12 ms
6,528 KB
testcase_12 AC 449 ms
8,704 KB
testcase_13 AC 433 ms
8,960 KB
testcase_14 AC 430 ms
8,960 KB
testcase_15 AC 528 ms
9,088 KB
testcase_16 AC 429 ms
9,216 KB
testcase_17 AC 640 ms
9,344 KB
testcase_18 AC 731 ms
9,728 KB
testcase_19 AC 811 ms
9,856 KB
testcase_20 AC 875 ms
10,240 KB
testcase_21 AC 962 ms
10,368 KB
testcase_22 AC 1,029 ms
10,624 KB
testcase_23 AC 1,098 ms
11,008 KB
testcase_24 AC 1,178 ms
11,136 KB
testcase_25 AC 1,236 ms
11,520 KB
testcase_26 AC 1,296 ms
11,776 KB
testcase_27 AC 15 ms
6,528 KB
testcase_28 AC 15 ms
6,528 KB
testcase_29 AC 17 ms
6,528 KB
testcase_30 AC 460 ms
8,960 KB
testcase_31 AC 557 ms
9,216 KB
testcase_32 AC 12 ms
6,528 KB
testcase_33 AC 11 ms
6,400 KB
testcase_34 AC 12 ms
6,400 KB
testcase_35 AC 12 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki649
import heapq


q,k=map(int,raw_input().split())
que1=[]
que2=[]
for i in xrange(q):
 s=map(int,raw_input().split())
 if len(s)==2:
  v=s[1]
  if len(que1)<k:
   heapq.heappush(que1,-v)
  elif v<-que1[0]:
   heapq.heappush(que2,-heapq.heappushpop(que1,-v))
  else:
   heapq.heappush(que2,v)
 else:
  if len(que1)<k:
   print '-1'
  elif que2:
   print -heapq.heapreplace(que1,-heapq.heappop(que2))
  else:
   print -heapq.heappop(que1)
0