結果

問題 No.2804 Fixer And Ratism
ユーザー yuyuyuyu
提出日時 2024-07-12 22:33:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-12 22:34:11
合計ジャッジ時間 8,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 245 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 73 ms
11,008 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 106 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 40 ms
10,880 KB
testcase_20 WA -
testcase_21 AC 298 ms
10,880 KB
testcase_22 WA -
testcase_23 AC 329 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 343 ms
10,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 364 ms
10,752 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
num = 0

people = []
solve = []

def delete(people):
    MIN = [10**5,0]
    for i in range(len(people)):
        if people[i][1] < MIN[0]:
            MIN = [people[i][1],i]
    print(people.pop(MIN[1])[0])
    return people

for i in range(Q):
    am = input().split()
    if am[0] == "1":
        people.append([am[1],int(am[2])])
        num += 1
        if num > N:
            if len(people) > 0:
                people = delete(people)
            else:
                solve = delete(solve)

    elif am[0]=="2":
        N -= int(am[1])
        temp = 0
        for i in range(num-N):
            if len(people) > 0:
                people = delete(people)
            elif len(solve) > 0:
                solve = delete(solve)
            else:
                temp += 1
        if N < num:
            num = N + temp
    else:
        N += int(am[2])
        i = 0
        while i < len(people):
            if people[i][0]==am[1]:
                solve.append(people.pop(i))
                i -= 1
            i += 1
0