結果

問題 No.714 回転寿司屋のシミュレート
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:37:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-05-02 19:57:11
合計ジャッジ時間 4,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,584 KB
testcase_01 AC 61 ms
51,712 KB
testcase_02 AC 51 ms
58,240 KB
testcase_03 AC 72 ms
66,304 KB
testcase_04 AC 65 ms
62,208 KB
testcase_05 AC 78 ms
71,680 KB
testcase_06 AC 85 ms
74,368 KB
testcase_07 AC 115 ms
76,544 KB
testcase_08 AC 109 ms
76,544 KB
testcase_09 AC 104 ms
76,856 KB
testcase_10 AC 106 ms
76,544 KB
testcase_11 AC 88 ms
74,368 KB
testcase_12 AC 100 ms
76,800 KB
testcase_13 AC 81 ms
73,472 KB
testcase_14 AC 85 ms
73,344 KB
testcase_15 AC 81 ms
73,600 KB
testcase_16 AC 68 ms
68,608 KB
testcase_17 AC 97 ms
76,928 KB
testcase_18 AC 80 ms
73,088 KB
testcase_19 AC 78 ms
72,320 KB
testcase_20 AC 81 ms
73,984 KB
testcase_21 AC 71 ms
68,864 KB
testcase_22 AC 69 ms
69,376 KB
testcase_23 AC 67 ms
68,864 KB
testcase_24 AC 76 ms
71,552 KB
testcase_25 AC 79 ms
72,704 KB
testcase_26 AC 77 ms
72,576 KB
testcase_27 AC 68 ms
69,248 KB
testcase_28 AC 66 ms
68,864 KB
testcase_29 AC 71 ms
69,632 KB
testcase_30 AC 35 ms
51,840 KB
testcase_31 AC 35 ms
52,224 KB
testcase_32 AC 34 ms
52,096 KB
testcase_33 AC 34 ms
51,968 KB
testcase_34 AC 34 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

pos = [{} for _ in range(21)]
for _ in range(n):
    t, *Q = input().split()
    if t == "0":
        n, m, *A = Q
        n = int(n)
        for a in A:
            pos[n][a] = pos[n].get(a, 0) + 1
    elif t == "1":
        ng = True
        b = Q[0]
        for i in range(1, 21):
            if pos[i].get(b, 0) > 0:
                print(i)
                pos[i][b] -= 1
                ng = False
                break
        if ng:
            print(-1)
    else:
        c = int(Q[0])
        pos[c] = {}
0