結果

問題 No.649 ここでちょっとQK!
ユーザー takakintakakin
提出日時 2020-06-08 21:47:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 572 ms / 3,000 ms
コード長 579 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-06-08 00:20:55
合計ジャッジ時間 11,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 362 ms
10,880 KB
testcase_04 AC 526 ms
18,560 KB
testcase_05 AC 544 ms
18,688 KB
testcase_06 AC 427 ms
20,352 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 284 ms
13,952 KB
testcase_13 AC 256 ms
14,080 KB
testcase_14 AC 262 ms
13,952 KB
testcase_15 AC 294 ms
14,080 KB
testcase_16 AC 219 ms
14,336 KB
testcase_17 AC 273 ms
14,464 KB
testcase_18 AC 313 ms
14,976 KB
testcase_19 AC 343 ms
15,360 KB
testcase_20 AC 371 ms
15,488 KB
testcase_21 AC 422 ms
15,744 KB
testcase_22 AC 446 ms
16,000 KB
testcase_23 AC 469 ms
16,512 KB
testcase_24 AC 496 ms
16,640 KB
testcase_25 AC 537 ms
17,096 KB
testcase_26 AC 572 ms
17,408 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 282 ms
14,080 KB
testcase_31 AC 241 ms
14,200 KB
testcase_32 AC 28 ms
10,624 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
q,k=map(int,input().split())
import heapq
Q1,Q2=[],[]
for _ in range(q):
  A=[int(i) for i in input().split()]
  if A[0]==1:
    a=A[1]
    if len(Q1)<k:
      heapq.heappush(Q1,-a)
    else:
      q1=-heapq.heappop(Q1)
      if q1<=a:
        heapq.heappush(Q1,-q1)
        heapq.heappush(Q2,a)
      else:
        heapq.heappush(Q1,-a)
        heapq.heappush(Q2,q1)
  else:
    if len(Q1)<k:
      print(-1)
    else:
      print(-heapq.heappop(Q1))
      if Q2:
        q2=heapq.heappop(Q2)
        heapq.heappush(Q1,-q2)
0