結果

問題 No.649 ここでちょっとQK!
ユーザー takakintakakin
提出日時 2020-06-08 21:47:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 620 ms / 3,000 ms
コード長 579 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-12-26 12:15:36
合計ジャッジ時間 13,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 37 ms
10,496 KB
testcase_03 AC 397 ms
10,752 KB
testcase_04 AC 562 ms
18,560 KB
testcase_05 AC 590 ms
18,560 KB
testcase_06 AC 502 ms
20,096 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 33 ms
10,624 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 33 ms
10,496 KB
testcase_11 AC 34 ms
10,496 KB
testcase_12 AC 299 ms
13,824 KB
testcase_13 AC 279 ms
13,952 KB
testcase_14 AC 285 ms
13,824 KB
testcase_15 AC 338 ms
13,952 KB
testcase_16 AC 238 ms
14,080 KB
testcase_17 AC 321 ms
14,464 KB
testcase_18 AC 348 ms
14,720 KB
testcase_19 AC 395 ms
14,976 KB
testcase_20 AC 421 ms
15,360 KB
testcase_21 AC 471 ms
15,616 KB
testcase_22 AC 485 ms
16,000 KB
testcase_23 AC 518 ms
16,256 KB
testcase_24 AC 556 ms
16,512 KB
testcase_25 AC 582 ms
16,964 KB
testcase_26 AC 620 ms
17,152 KB
testcase_27 AC 36 ms
10,496 KB
testcase_28 AC 35 ms
10,496 KB
testcase_29 AC 35 ms
10,496 KB
testcase_30 AC 305 ms
13,824 KB
testcase_31 AC 263 ms
14,072 KB
testcase_32 AC 32 ms
10,496 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 35 ms
10,496 KB
testcase_35 AC 34 ms
10,496 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