結果

問題 No.714 回転寿司屋のシミュレート
ユーザー flippergoflippergo
提出日時 2024-10-27 17:22:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 77,188 KB
最終ジャッジ日時 2024-10-27 17:22:49
合計ジャッジ時間 4,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 37 ms
52,944 KB
testcase_02 AC 43 ms
59,048 KB
testcase_03 AC 58 ms
67,232 KB
testcase_04 AC 55 ms
62,940 KB
testcase_05 AC 78 ms
73,272 KB
testcase_06 AC 72 ms
70,952 KB
testcase_07 AC 100 ms
76,772 KB
testcase_08 AC 115 ms
76,788 KB
testcase_09 AC 113 ms
77,188 KB
testcase_10 AC 98 ms
76,432 KB
testcase_11 AC 68 ms
69,872 KB
testcase_12 AC 96 ms
76,308 KB
testcase_13 AC 80 ms
74,012 KB
testcase_14 AC 80 ms
74,204 KB
testcase_15 AC 81 ms
73,848 KB
testcase_16 AC 78 ms
74,564 KB
testcase_17 AC 91 ms
76,312 KB
testcase_18 AC 93 ms
76,396 KB
testcase_19 AC 75 ms
72,544 KB
testcase_20 AC 82 ms
74,340 KB
testcase_21 AC 71 ms
70,552 KB
testcase_22 AC 93 ms
69,612 KB
testcase_23 AC 63 ms
68,180 KB
testcase_24 AC 78 ms
74,896 KB
testcase_25 AC 74 ms
72,328 KB
testcase_26 AC 69 ms
70,380 KB
testcase_27 AC 58 ms
64,744 KB
testcase_28 AC 66 ms
69,364 KB
testcase_29 AC 70 ms
71,640 KB
testcase_30 AC 37 ms
53,432 KB
testcase_31 AC 39 ms
52,488 KB
testcase_32 AC 39 ms
53,616 KB
testcase_33 AC 37 ms
52,436 KB
testcase_34 AC 38 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [[] for _ in range(20+1)]
for _ in range(N):
    U = list(input().split())
    if U[0]=="0":
        seki = int(U[1])
        A[seki] = U[3:]
    elif U[0]=="1":
        neta = U[1]
        flag = -1
        for i in range(1,20+1):
            if len(A[i])==0:continue
            if neta not in A[i]:continue
            ind = A[i].index(neta)
            A[i].pop(ind)
            flag = i
            break
        print(flag)
    else:
        seki = int(U[1])
        A[seki] = []
0