結果

問題 No.649 ここでちょっとQK!
ユーザー 👑 KazunKazun
提出日時 2020-08-08 04:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 3,000 ms
コード長 677 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-09-25 07:04:55
合計ジャッジ時間 9,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 174 ms
81,152 KB
testcase_04 AC 339 ms
90,624 KB
testcase_05 AC 236 ms
87,296 KB
testcase_06 AC 232 ms
84,976 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 40 ms
52,468 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 193 ms
81,152 KB
testcase_13 AC 192 ms
81,280 KB
testcase_14 AC 187 ms
81,024 KB
testcase_15 AC 261 ms
83,052 KB
testcase_16 AC 240 ms
81,500 KB
testcase_17 AC 295 ms
81,588 KB
testcase_18 AC 285 ms
83,212 KB
testcase_19 AC 298 ms
83,164 KB
testcase_20 AC 306 ms
83,872 KB
testcase_21 AC 313 ms
85,248 KB
testcase_22 AC 326 ms
84,864 KB
testcase_23 AC 332 ms
85,804 KB
testcase_24 AC 345 ms
86,592 KB
testcase_25 AC 345 ms
87,296 KB
testcase_26 AC 362 ms
88,412 KB
testcase_27 AC 62 ms
65,408 KB
testcase_28 AC 61 ms
66,048 KB
testcase_29 AC 68 ms
68,480 KB
testcase_30 AC 218 ms
82,968 KB
testcase_31 AC 262 ms
81,868 KB
testcase_32 AC 41 ms
52,608 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

Q,K=map(int,input().split())
X=0
F=0

A,B=[],[]

Z=[0]*Q
for _ in range(Q):
    T=list(map(int,input().split()))

    if T[0]==1:
        v=T[1]
        X+=1

        if X>K:
            if v<-A[0]:
                u=-heapq.heappop(A)
                heapq.heappush(A,-v)
                heapq.heappush(B,u)
            else:
                heapq.heappush(B,v)
        else:
            heapq.heappush(A,-v)

    else:
        if X>=K:
            Z[F]=-heapq.heappop(A)

            if X>K:
                u=heapq.heappop(B)
                heapq.heappush(A,-u)
            X-=1
        else:
            Z[F]=-1
        F+=1

print("\n".join(map(str,Z[:F])))
0