結果

問題 No.714 回転寿司屋のシミュレート
ユーザー rlangevinrlangevin
提出日時 2023-01-17 21:20:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-10 23:20:03
合計ジャッジ時間 4,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 44 ms
58,112 KB
testcase_03 AC 63 ms
65,920 KB
testcase_04 AC 58 ms
62,080 KB
testcase_05 AC 80 ms
71,552 KB
testcase_06 AC 77 ms
68,736 KB
testcase_07 AC 105 ms
76,416 KB
testcase_08 AC 118 ms
76,672 KB
testcase_09 AC 108 ms
76,672 KB
testcase_10 AC 100 ms
76,544 KB
testcase_11 AC 67 ms
67,712 KB
testcase_12 AC 89 ms
76,380 KB
testcase_13 AC 85 ms
73,600 KB
testcase_14 AC 80 ms
72,064 KB
testcase_15 AC 82 ms
73,088 KB
testcase_16 AC 79 ms
72,064 KB
testcase_17 AC 91 ms
75,904 KB
testcase_18 AC 79 ms
73,472 KB
testcase_19 AC 77 ms
72,320 KB
testcase_20 AC 85 ms
72,960 KB
testcase_21 AC 69 ms
68,736 KB
testcase_22 AC 69 ms
68,352 KB
testcase_23 AC 69 ms
67,712 KB
testcase_24 AC 83 ms
73,984 KB
testcase_25 AC 80 ms
71,552 KB
testcase_26 AC 73 ms
68,736 KB
testcase_27 AC 62 ms
64,384 KB
testcase_28 AC 72 ms
68,352 KB
testcase_29 AC 73 ms
68,736 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 41 ms
52,736 KB
testcase_32 AC 41 ms
52,480 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = [[] for i in range(20)]
for _ in range(N):
    U = list(input().split())
    if U[0] == "0":
        n, m = int(U[1]), U[2]
        D[n - 1] = U[3:]
    elif U[0] == "1":
        for i in range(20):
            if U[1] in D[i]:
                print(i + 1)
                D[i].pop(D[i].index(U[1]))
                break
        else:
            print(-1)
    else:
        D[int(U[1]) - 1] = []
0