結果

問題 No.2804 Fixer And Ratism
ユーザー anonymouslyanonymously
提出日時 2024-07-12 21:43:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-12 21:43:21
合計ジャッジ時間 11,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 48 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 431 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 106 ms
10,752 KB
testcase_14 AC 245 ms
10,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 147 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 42 ms
10,752 KB
testcase_20 WA -
testcase_21 AC 520 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 600 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 589 ms
10,752 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 584 ms
10,752 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 545 ms
10,752 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
D = {}
L = []
for q in range(Q):
    query = input().split()
    if query[0] == '1':
        s, r = query[1], int(query[2])
        D[s] = [False, r, s]
        L.append(D[s])
        if (len(L) > N):
            m = min(L)
            print(m[-1])
            L.remove(m)
    elif query[0] == '2':
        x = int(query[1])
        N -= x
        L.sort(reverse=True)
        while len(L) > N:
            m = L.pop()
            print(m[-1])
    elif query[0] == '3':
        s, x = query[1], int(query[2])
        N += x
        D[s][0] = True
0