結果

問題 No.714 回転寿司屋のシミュレート
ユーザー yansi819yansi819
提出日時 2024-05-14 09:31:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 77,012 KB
最終ジャッジ日時 2024-12-20 09:51:34
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,952 KB
testcase_01 AC 39 ms
52,192 KB
testcase_02 AC 44 ms
59,208 KB
testcase_03 AC 61 ms
66,424 KB
testcase_04 AC 56 ms
62,640 KB
testcase_05 AC 77 ms
71,816 KB
testcase_06 AC 76 ms
70,628 KB
testcase_07 AC 109 ms
76,892 KB
testcase_08 AC 112 ms
76,768 KB
testcase_09 AC 101 ms
76,664 KB
testcase_10 AC 98 ms
77,012 KB
testcase_11 AC 69 ms
69,016 KB
testcase_12 AC 93 ms
76,052 KB
testcase_13 AC 81 ms
74,172 KB
testcase_14 AC 82 ms
72,124 KB
testcase_15 AC 82 ms
73,744 KB
testcase_16 AC 77 ms
71,700 KB
testcase_17 AC 92 ms
76,256 KB
testcase_18 AC 82 ms
73,380 KB
testcase_19 AC 75 ms
71,872 KB
testcase_20 AC 81 ms
73,224 KB
testcase_21 AC 73 ms
69,868 KB
testcase_22 AC 70 ms
68,744 KB
testcase_23 AC 65 ms
68,704 KB
testcase_24 AC 80 ms
73,808 KB
testcase_25 AC 77 ms
72,148 KB
testcase_26 AC 71 ms
69,836 KB
testcase_27 AC 61 ms
64,600 KB
testcase_28 AC 66 ms
68,224 KB
testcase_29 AC 72 ms
68,800 KB
testcase_30 AC 40 ms
53,036 KB
testcase_31 AC 37 ms
53,040 KB
testcase_32 AC 39 ms
53,764 KB
testcase_33 AC 40 ms
52,156 KB
testcase_34 AC 43 ms
53,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [[]] * 20
for _ in range(N):
    U = input().split()
    if U[0] == "0":
        S[int(U[1]) - 1] = U[3:]
    elif U[0] == "1":
        for i in range(20):
            if U[1] in S[i]:
                print(i + 1)
                S[i].pop(S[i].index(U[1]))
                break
        else:
            print(-1)
    else:
        S[int(U[1]) - 1].clear()
0