結果

問題 No.2804 Fixer And Ratism
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-01 15:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,230 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 77,892 KB
最終ジャッジ日時 2024-07-11 23:10:30
合計ジャッジ時間 14,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,204 KB
testcase_01 AC 37 ms
52,644 KB
testcase_02 AC 36 ms
52,788 KB
testcase_03 AC 490 ms
76,748 KB
testcase_04 AC 288 ms
77,072 KB
testcase_05 AC 120 ms
76,524 KB
testcase_06 AC 160 ms
77,196 KB
testcase_07 AC 136 ms
76,220 KB
testcase_08 AC 111 ms
76,896 KB
testcase_09 AC 123 ms
76,584 KB
testcase_10 AC 101 ms
76,284 KB
testcase_11 AC 871 ms
76,692 KB
testcase_12 AC 318 ms
77,120 KB
testcase_13 AC 216 ms
76,368 KB
testcase_14 AC 309 ms
77,168 KB
testcase_15 AC 105 ms
76,848 KB
testcase_16 AC 213 ms
77,264 KB
testcase_17 AC 296 ms
76,380 KB
testcase_18 AC 247 ms
76,420 KB
testcase_19 AC 108 ms
76,888 KB
testcase_20 AC 103 ms
76,964 KB
testcase_21 AC 1,053 ms
77,000 KB
testcase_22 AC 78 ms
76,308 KB
testcase_23 AC 1,139 ms
77,208 KB
testcase_24 AC 165 ms
76,240 KB
testcase_25 AC 1,226 ms
77,312 KB
testcase_26 AC 478 ms
76,288 KB
testcase_27 AC 212 ms
77,716 KB
testcase_28 AC 1,230 ms
76,928 KB
testcase_29 AC 439 ms
77,056 KB
testcase_30 AC 548 ms
76,928 KB
testcase_31 AC 182 ms
76,364 KB
testcase_32 AC 943 ms
77,892 KB
testcase_33 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
assert 1<=N<=100
assert 1<=Q<=100000
beforeuser=set()
beforerate=set()
there=[]
for _ in range(Q):
    t,*q=input().split()
    if t=="1":
        assert 0<=int(q[1])<=4000
        assert int(q[1]) not in beforerate
        beforerate.add(int(q[1]))
        assert q[0] not in beforeuser
        beforeuser.add(q[0])
        assert len(beforeuser)<=100
        there.append((int(q[1]),q[0]))
    elif t=="2":
        N-=int(q[0])
    else:
        assert q[0] in beforeuser
        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])
    assert N>=1
    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