結果

問題 No.714 回転寿司屋のシミュレート
ユーザー 👑 KazunKazun
提出日時 2020-11-14 03:39:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 76,924 KB
最終ジャッジ日時 2024-07-22 22:41:33
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,916 KB
testcase_01 AC 39 ms
52,744 KB
testcase_02 AC 45 ms
59,612 KB
testcase_03 AC 58 ms
65,784 KB
testcase_04 AC 55 ms
64,208 KB
testcase_05 AC 76 ms
74,836 KB
testcase_06 AC 75 ms
72,412 KB
testcase_07 AC 97 ms
76,832 KB
testcase_08 AC 106 ms
76,804 KB
testcase_09 AC 109 ms
76,744 KB
testcase_10 AC 95 ms
76,704 KB
testcase_11 AC 95 ms
76,496 KB
testcase_12 AC 89 ms
76,468 KB
testcase_13 AC 80 ms
75,212 KB
testcase_14 AC 88 ms
76,924 KB
testcase_15 AC 79 ms
74,136 KB
testcase_16 AC 70 ms
72,292 KB
testcase_17 AC 78 ms
74,164 KB
testcase_18 AC 80 ms
73,900 KB
testcase_19 AC 78 ms
74,136 KB
testcase_20 AC 84 ms
74,532 KB
testcase_21 AC 73 ms
72,340 KB
testcase_22 AC 70 ms
69,456 KB
testcase_23 AC 70 ms
69,588 KB
testcase_24 AC 77 ms
75,544 KB
testcase_25 AC 72 ms
70,888 KB
testcase_26 AC 78 ms
72,508 KB
testcase_27 AC 64 ms
67,148 KB
testcase_28 AC 66 ms
68,616 KB
testcase_29 AC 77 ms
73,424 KB
testcase_30 AC 39 ms
52,000 KB
testcase_31 AC 40 ms
52,644 KB
testcase_32 AC 40 ms
52,572 KB
testcase_33 AC 40 ms
52,532 KB
testcase_34 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=[]

List=[{} for _ in range(21)]
for _ in range(N):
    k,*U=input().split()
    k=int(k)
    if k==0:
        n,m,*E=U
        n=int(n);m=int(m)
        for a in E:
            if a in List[n]:
                List[n][a]+=1
            else:
                List[n][a]=1
    elif k==1:
        B,=U
        F=0
        for i in range(1,21):
            if B in List[i] and List[i][B]>0:
                List[i][B]-=1
                X.append(i)
                F=1
                break

        if F==0:
            X.append(-1)
    else:
        C,=U
        C=int(C)
        List[C]={}
print(*X,sep="\n")
0