結果

問題 No.2804 Fixer And Ratism
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-04 08:09:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-08-13 02:10:56
合計ジャッジ時間 15,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 493 ms
77,056 KB
testcase_04 AC 294 ms
77,184 KB
testcase_05 AC 123 ms
76,596 KB
testcase_06 AC 163 ms
77,312 KB
testcase_07 AC 134 ms
76,360 KB
testcase_08 AC 114 ms
76,800 KB
testcase_09 AC 122 ms
76,672 KB
testcase_10 AC 104 ms
76,544 KB
testcase_11 AC 897 ms
76,800 KB
testcase_12 AC 324 ms
77,184 KB
testcase_13 AC 213 ms
76,288 KB
testcase_14 AC 301 ms
77,184 KB
testcase_15 AC 106 ms
76,416 KB
testcase_16 AC 206 ms
77,056 KB
testcase_17 AC 292 ms
76,672 KB
testcase_18 AC 235 ms
76,672 KB
testcase_19 AC 105 ms
76,800 KB
testcase_20 AC 98 ms
76,672 KB
testcase_21 AC 1,058 ms
77,184 KB
testcase_22 AC 79 ms
76,160 KB
testcase_23 AC 1,146 ms
77,632 KB
testcase_24 AC 184 ms
76,288 KB
testcase_25 AC 1,206 ms
77,168 KB
testcase_26 AC 463 ms
77,040 KB
testcase_27 AC 210 ms
77,712 KB
testcase_28 AC 1,197 ms
77,508 KB
testcase_29 AC 424 ms
77,264 KB
testcase_30 AC 530 ms
77,184 KB
testcase_31 AC 178 ms
76,840 KB
testcase_32 AC 929 ms
77,952 KB
testcase_33 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
assert 1<=N<=100
assert 1<=Q<=100000
beforeuser=set()
beforerate=set()
goodbyeuser=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
        assert q[0] not in goodbyeuser
        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:
        goodbyeuser.add(there[-1][1])
        goodbye.append((there[-1][0]%998244353,there[-1][1]))
        there.pop()
    goodbye.sort()
    for i in goodbye:
        print(i[1])
0