結果

問題 No.714 回転寿司屋のシミュレート
ユーザー lloyzlloyz
提出日時 2022-06-20 23:26:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,988 KB
最終ジャッジ日時 2024-10-13 12:27:31
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 48 ms
60,672 KB
testcase_03 AC 64 ms
68,480 KB
testcase_04 AC 59 ms
63,744 KB
testcase_05 AC 94 ms
77,056 KB
testcase_06 AC 78 ms
71,424 KB
testcase_07 AC 109 ms
77,060 KB
testcase_08 AC 121 ms
77,184 KB
testcase_09 AC 128 ms
77,988 KB
testcase_10 AC 103 ms
77,040 KB
testcase_11 AC 78 ms
72,960 KB
testcase_12 AC 99 ms
77,056 KB
testcase_13 AC 83 ms
73,984 KB
testcase_14 AC 83 ms
74,368 KB
testcase_15 AC 83 ms
73,856 KB
testcase_16 AC 80 ms
73,216 KB
testcase_17 AC 104 ms
77,440 KB
testcase_18 AC 100 ms
76,616 KB
testcase_19 AC 86 ms
74,192 KB
testcase_20 AC 92 ms
77,056 KB
testcase_21 AC 83 ms
73,856 KB
testcase_22 AC 76 ms
71,040 KB
testcase_23 AC 81 ms
73,216 KB
testcase_24 AC 76 ms
71,168 KB
testcase_25 AC 74 ms
70,784 KB
testcase_26 AC 82 ms
73,088 KB
testcase_27 AC 69 ms
68,608 KB
testcase_28 AC 72 ms
69,888 KB
testcase_29 AC 96 ms
76,964 KB
testcase_30 AC 43 ms
54,272 KB
testcase_31 AC 44 ms
54,016 KB
testcase_32 AC 42 ms
53,888 KB
testcase_33 AC 44 ms
54,016 KB
testcase_34 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
Cnt = defaultdict(lambda :[0 for _ in range(21)])
for _ in range(n):
    L = list(input().split())
    if L[0] == '0':
        j = int(L[1])
        m = int(L[2])
        L = L[3:]
        for i in range(m):
            Cnt[L[i]][j] += 1
    elif L[0] == '1':
        s = L[1]
        flag = False
        for i in range(1, 21):
            if Cnt[s][i] > 0:
                Cnt[s][i] -= 1
                print(i)
                flag = True
                break
        if not flag:
            print(-1)
    elif L[0] == '2':
        j = int(L[1])
        for s in Cnt.keys():
            Cnt[s][j] = 0
0