結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 586 ms
76,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 127 ms
76,416 KB
testcase_10 WA -
testcase_11 AC 1,032 ms
76,640 KB
testcase_12 WA -
testcase_13 AC 262 ms
76,416 KB
testcase_14 AC 341 ms
77,056 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 348 ms
76,180 KB
testcase_18 WA -
testcase_19 AC 117 ms
76,928 KB
testcase_20 WA -
testcase_21 AC 1,253 ms
77,112 KB
testcase_22 WA -
testcase_23 AC 1,309 ms
77,184 KB
testcase_24 WA -
testcase_25 AC 1,483 ms
77,296 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,449 ms
77,312 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,032 ms
77,440 KB
testcase_33 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
there=[]
for _ 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)
    goodbye=[]
    while len(there)>N:
        goodbye.append((there[-1][0]%998244353,there[-1][1]))
        there.pop()
    goodbye.sort()
    for i in goodbye:
        print(i[1])
0