結果

問題 No.714 回転寿司屋のシミュレート
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-05 18:16:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-13 11:24:28
合計ジャッジ時間 4,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 52 ms
60,288 KB
testcase_03 AC 66 ms
68,608 KB
testcase_04 AC 70 ms
68,864 KB
testcase_05 AC 104 ms
77,624 KB
testcase_06 AC 94 ms
77,056 KB
testcase_07 AC 118 ms
76,928 KB
testcase_08 AC 134 ms
77,492 KB
testcase_09 AC 122 ms
77,056 KB
testcase_10 AC 113 ms
77,184 KB
testcase_11 AC 102 ms
77,312 KB
testcase_12 AC 110 ms
77,824 KB
testcase_13 AC 99 ms
77,312 KB
testcase_14 AC 107 ms
77,440 KB
testcase_15 AC 89 ms
76,816 KB
testcase_16 AC 79 ms
72,320 KB
testcase_17 AC 111 ms
77,184 KB
testcase_18 AC 98 ms
76,928 KB
testcase_19 AC 96 ms
76,544 KB
testcase_20 AC 97 ms
76,928 KB
testcase_21 AC 82 ms
73,088 KB
testcase_22 AC 84 ms
74,752 KB
testcase_23 AC 80 ms
73,472 KB
testcase_24 AC 81 ms
73,344 KB
testcase_25 AC 93 ms
76,968 KB
testcase_26 AC 99 ms
77,308 KB
testcase_27 AC 73 ms
70,016 KB
testcase_28 AC 80 ms
71,808 KB
testcase_29 AC 83 ms
73,728 KB
testcase_30 AC 43 ms
53,632 KB
testcase_31 AC 45 ms
54,400 KB
testcase_32 AC 45 ms
53,888 KB
testcase_33 AC 43 ms
54,016 KB
testcase_34 AC 44 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = [{} for i in range(20)]
from collections import Counter
for i in range(N):
    U = list(map(str, input().split()))
    if U[0] == '1':
        b = U[1]
        #print(D)
        for i in range(20):
            if b in D[i]:
                if D[i][b] == 0:
                    continue
                else:
                    D[i][b] -= 1
                    print(i+1)
                    break
        else:
            print(-1)
    elif U[0] == '0':
        n, m = int(U[1]), int(U[2])
        n -= 1
        A = U[3:]
        C = Counter(A)
        D[n] = C
    else:
        c = int(U[1])
        c -= 1
        D[c] = {}
0