結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,976 KB
testcase_01 AC 38 ms
52,408 KB
testcase_02 AC 43 ms
58,468 KB
testcase_03 AC 59 ms
66,188 KB
testcase_04 AC 54 ms
63,948 KB
testcase_05 AC 75 ms
71,364 KB
testcase_06 AC 70 ms
70,476 KB
testcase_07 AC 96 ms
77,064 KB
testcase_08 AC 109 ms
76,368 KB
testcase_09 AC 98 ms
76,904 KB
testcase_10 AC 95 ms
76,920 KB
testcase_11 AC 66 ms
69,104 KB
testcase_12 AC 93 ms
76,508 KB
testcase_13 AC 80 ms
73,744 KB
testcase_14 AC 77 ms
72,620 KB
testcase_15 AC 79 ms
73,924 KB
testcase_16 AC 74 ms
71,624 KB
testcase_17 AC 91 ms
76,456 KB
testcase_18 AC 80 ms
73,588 KB
testcase_19 AC 75 ms
73,176 KB
testcase_20 AC 78 ms
73,164 KB
testcase_21 AC 69 ms
69,044 KB
testcase_22 AC 65 ms
68,064 KB
testcase_23 AC 64 ms
67,828 KB
testcase_24 AC 76 ms
73,532 KB
testcase_25 AC 91 ms
72,092 KB
testcase_26 AC 68 ms
69,220 KB
testcase_27 AC 59 ms
66,088 KB
testcase_28 AC 66 ms
68,980 KB
testcase_29 AC 68 ms
69,088 KB
testcase_30 AC 38 ms
52,072 KB
testcase_31 AC 39 ms
53,692 KB
testcase_32 AC 39 ms
53,160 KB
testcase_33 AC 38 ms
52,756 KB
testcase_34 AC 38 ms
52,900 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