結果

問題 No.2804 Fixer And Ratism
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-01 14:49:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,256 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,512 KB
最終ジャッジ日時 2024-07-11 23:10:13
合計ジャッジ時間 14,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 36 ms
52,300 KB
testcase_02 AC 36 ms
51,884 KB
testcase_03 AC 508 ms
76,928 KB
testcase_04 AC 291 ms
76,692 KB
testcase_05 AC 124 ms
76,272 KB
testcase_06 AC 161 ms
76,928 KB
testcase_07 AC 136 ms
76,220 KB
testcase_08 AC 110 ms
76,960 KB
testcase_09 AC 120 ms
76,616 KB
testcase_10 AC 101 ms
76,208 KB
testcase_11 AC 901 ms
76,608 KB
testcase_12 AC 319 ms
76,896 KB
testcase_13 AC 218 ms
76,544 KB
testcase_14 AC 306 ms
77,152 KB
testcase_15 AC 104 ms
76,392 KB
testcase_16 AC 207 ms
77,280 KB
testcase_17 AC 304 ms
76,612 KB
testcase_18 AC 241 ms
76,456 KB
testcase_19 AC 107 ms
77,012 KB
testcase_20 AC 99 ms
76,668 KB
testcase_21 AC 1,094 ms
77,060 KB
testcase_22 AC 75 ms
74,352 KB
testcase_23 AC 1,158 ms
77,452 KB
testcase_24 AC 159 ms
76,148 KB
testcase_25 AC 1,256 ms
76,764 KB
testcase_26 AC 475 ms
76,368 KB
testcase_27 AC 194 ms
77,380 KB
testcase_28 AC 1,236 ms
77,180 KB
testcase_29 AC 429 ms
76,680 KB
testcase_30 AC 537 ms
77,016 KB
testcase_31 AC 171 ms
76,356 KB
testcase_32 AC 948 ms
77,512 KB
testcase_33 AC 38 ms
53,632 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+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