結果

問題 No.714 回転寿司屋のシミュレート
ユーザー ああいいああいい
提出日時 2022-05-18 10:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-16 11:28:50
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 46 ms
59,904 KB
testcase_03 AC 63 ms
68,352 KB
testcase_04 AC 58 ms
63,616 KB
testcase_05 AC 81 ms
73,728 KB
testcase_06 AC 78 ms
71,296 KB
testcase_07 AC 117 ms
76,928 KB
testcase_08 AC 116 ms
76,928 KB
testcase_09 AC 113 ms
77,568 KB
testcase_10 AC 102 ms
76,800 KB
testcase_11 AC 78 ms
71,552 KB
testcase_12 AC 107 ms
77,440 KB
testcase_13 AC 91 ms
76,672 KB
testcase_14 AC 94 ms
76,928 KB
testcase_15 AC 92 ms
77,152 KB
testcase_16 AC 82 ms
73,600 KB
testcase_17 AC 103 ms
76,672 KB
testcase_18 AC 92 ms
76,928 KB
testcase_19 AC 84 ms
74,368 KB
testcase_20 AC 91 ms
76,416 KB
testcase_21 AC 76 ms
71,296 KB
testcase_22 AC 79 ms
71,552 KB
testcase_23 AC 76 ms
71,168 KB
testcase_24 AC 86 ms
74,712 KB
testcase_25 AC 92 ms
76,672 KB
testcase_26 AC 75 ms
70,784 KB
testcase_27 AC 75 ms
71,552 KB
testcase_28 AC 74 ms
70,912 KB
testcase_29 AC 77 ms
71,424 KB
testcase_30 AC 41 ms
53,888 KB
testcase_31 AC 41 ms
53,632 KB
testcase_32 AC 42 ms
53,888 KB
testcase_33 AC 41 ms
53,504 KB
testcase_34 AC 40 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

from collections import defaultdict
d = [defaultdict(int) for _ in range(20)]
for _ in range(N):
    l = input().split()
    l[0] = int(l[0])
    if l[0] == 0:
        n = int(l[1])
        m = int(l[2])
        n -= 1
        d[n] = defaultdict(int)
        for v in l[3:]:
            d[n][v] += 1
    elif l[0] == 1:
        b = l[1]
        flag = False
        for i in range(20):
            if b in d[i]:
                print(i + 1)
                d[i][b] -= 1
                if d[i][b] == 0:
                    del d[i][b]
                flag = True
                break
        if flag == False:
            print(-1)
    else:
        c = int(l[1])
        d[c-1] = defaultdict(int)
0