結果

問題 No.714 回転寿司屋のシミュレート
ユーザー convexineqconvexineq
提出日時 2021-03-14 16:37:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,172 KB
最終ジャッジ日時 2024-11-06 06:23:51
合計ジャッジ時間 4,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,132 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 43 ms
59,812 KB
testcase_03 AC 58 ms
68,004 KB
testcase_04 AC 54 ms
62,260 KB
testcase_05 AC 76 ms
72,188 KB
testcase_06 AC 76 ms
70,064 KB
testcase_07 AC 100 ms
76,744 KB
testcase_08 AC 115 ms
76,596 KB
testcase_09 AC 98 ms
76,980 KB
testcase_10 AC 95 ms
77,172 KB
testcase_11 AC 68 ms
68,828 KB
testcase_12 AC 94 ms
76,732 KB
testcase_13 AC 83 ms
73,972 KB
testcase_14 AC 86 ms
74,012 KB
testcase_15 AC 88 ms
73,244 KB
testcase_16 AC 79 ms
72,896 KB
testcase_17 AC 93 ms
76,376 KB
testcase_18 AC 81 ms
73,548 KB
testcase_19 AC 78 ms
73,052 KB
testcase_20 AC 83 ms
73,464 KB
testcase_21 AC 71 ms
70,132 KB
testcase_22 AC 68 ms
69,312 KB
testcase_23 AC 65 ms
68,512 KB
testcase_24 AC 77 ms
73,304 KB
testcase_25 AC 74 ms
73,764 KB
testcase_26 AC 68 ms
68,788 KB
testcase_27 AC 59 ms
65,960 KB
testcase_28 AC 67 ms
69,668 KB
testcase_29 AC 71 ms
69,768 KB
testcase_30 AC 38 ms
52,804 KB
testcase_31 AC 40 ms
53,956 KB
testcase_32 AC 39 ms
53,000 KB
testcase_33 AC 39 ms
52,572 KB
testcase_34 AC 40 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lst = [[] for _ in range(21)]
n = int(input())
for _ in range(n):
    i,*a, = input().split()
    if i=="0":
        lst[int(a[0])] = a[2:]
    elif i=="1":
        b = a[0]
        for j in range(1,21):
            if b in lst[j]:
                lst[j].pop(lst[j].index(b))
                print(j)
                break
        else:
            print(-1)
    elif i=="2":
        lst[int(a[0])] = []
0