結果

問題 No.649 ここでちょっとQK!
ユーザー syunsukesyunsuke
提出日時 2019-09-12 00:11:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 3,000 ms
コード長 620 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 86,544 KB
最終ジャッジ日時 2024-07-02 16:56:46
合計ジャッジ時間 8,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 117 ms
76,544 KB
testcase_04 AC 240 ms
86,544 KB
testcase_05 AC 152 ms
84,260 KB
testcase_06 AC 182 ms
83,996 KB
testcase_07 AC 39 ms
52,992 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 159 ms
80,112 KB
testcase_13 AC 137 ms
80,640 KB
testcase_14 AC 150 ms
80,036 KB
testcase_15 AC 196 ms
81,024 KB
testcase_16 AC 172 ms
80,256 KB
testcase_17 AC 203 ms
80,484 KB
testcase_18 AC 232 ms
80,640 KB
testcase_19 AC 245 ms
80,640 KB
testcase_20 AC 245 ms
82,048 KB
testcase_21 AC 242 ms
83,072 KB
testcase_22 AC 252 ms
82,768 KB
testcase_23 AC 252 ms
84,364 KB
testcase_24 AC 246 ms
84,992 KB
testcase_25 AC 260 ms
84,352 KB
testcase_26 AC 265 ms
85,888 KB
testcase_27 AC 55 ms
62,080 KB
testcase_28 AC 51 ms
61,696 KB
testcase_29 AC 61 ms
64,256 KB
testcase_30 AC 159 ms
80,512 KB
testcase_31 AC 186 ms
80,000 KB
testcase_32 AC 43 ms
52,224 KB
testcase_33 AC 40 ms
52,480 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q,K=map(int,input().split())
A=[]
B=[]
import heapq
import sys
input=sys.stdin.readline
heapq.heapify(A)
heapq.heapify(B)
for i in range(Q):
    C=list(map(int,input().split()))
    #print(C)
    if len(C)==1:
        if len(B)==0:
            print(-1)
        else:
            a=heapq.heappop(B)
            print(a)
    else:
        if len(A)<K-1:
            heapq.heappush(A,-C[1])
        elif K==1:
            heapq.heappush(B,C[1])
        elif A[0]>(-1*C[1]):
            heapq.heappush(B,C[1])
        else:
            heapq.heappush(A,-C[1])
            c=heapq.heappop(A)
            heapq.heappush(B,-c)
0