結果

問題 No.2804 Fixer And Ratism
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-01 14:46:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-11 23:10:10
合計ジャッジ時間 16,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 44 ms
51,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 127 ms
76,032 KB
testcase_10 WA -
testcase_11 AC 1,119 ms
76,800 KB
testcase_12 WA -
testcase_13 AC 277 ms
76,160 KB
testcase_14 AC 377 ms
76,800 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 376 ms
76,672 KB
testcase_18 WA -
testcase_19 AC 103 ms
76,416 KB
testcase_20 WA -
testcase_21 AC 1,329 ms
77,056 KB
testcase_22 WA -
testcase_23 AC 1,370 ms
77,184 KB
testcase_24 WA -
testcase_25 AC 1,519 ms
77,440 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,526 ms
77,440 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,077 ms
77,056 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
there=[]
for i in range(Q):
    t,*q=input().split()
    if t=="1":
        there.append((int(q[1]),q[0]))
    elif t=="2":
        N-=int(q[0])
    else:
        N+=int(q[1])
        for i in range(len(there)):
            if there[i][1]==q[0]:
                there[i]=(there[i][0]+998244353,q[0])
    there.sort(reverse=True)
    while len(there)>N:
        print(there[-1][1])
        there.pop()
0