結果

問題 No.714 回転寿司屋のシミュレート
ユーザー O2MTO2MT
提出日時 2021-02-17 01:57:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 78,240 KB
最終ジャッジ日時 2024-09-13 13:52:29
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,816 KB
testcase_01 AC 41 ms
55,152 KB
testcase_02 AC 47 ms
61,452 KB
testcase_03 AC 52 ms
62,412 KB
testcase_04 AC 63 ms
66,460 KB
testcase_05 AC 91 ms
77,260 KB
testcase_06 AC 92 ms
77,200 KB
testcase_07 AC 127 ms
77,932 KB
testcase_08 AC 137 ms
77,992 KB
testcase_09 AC 120 ms
77,568 KB
testcase_10 AC 120 ms
77,632 KB
testcase_11 AC 91 ms
76,892 KB
testcase_12 AC 99 ms
77,108 KB
testcase_13 AC 94 ms
77,112 KB
testcase_14 AC 98 ms
77,128 KB
testcase_15 AC 107 ms
78,240 KB
testcase_16 AC 90 ms
76,896 KB
testcase_17 AC 105 ms
77,104 KB
testcase_18 AC 103 ms
77,088 KB
testcase_19 AC 97 ms
77,012 KB
testcase_20 AC 101 ms
77,184 KB
testcase_21 AC 80 ms
74,948 KB
testcase_22 AC 80 ms
73,344 KB
testcase_23 AC 97 ms
77,452 KB
testcase_24 AC 80 ms
73,396 KB
testcase_25 AC 76 ms
70,848 KB
testcase_26 AC 86 ms
74,956 KB
testcase_27 AC 75 ms
71,520 KB
testcase_28 AC 79 ms
72,192 KB
testcase_29 AC 82 ms
75,064 KB
testcase_30 AC 41 ms
55,188 KB
testcase_31 AC 43 ms
54,184 KB
testcase_32 AC 43 ms
55,004 KB
testcase_33 AC 41 ms
53,728 KB
testcase_34 AC 41 ms
55,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
l = [False for _ in range(21)]
for _ in range(N):
    u = list(map(str,input().split()))
    if len(u) == 2:
        if u[0] == '1':
            #データ1の処理
            b,count,flg = u[1],-1,True
            for d in l:
                count += 1
                if not d:
                    continue
                if b in d:
                    d[b] -= 1
                    print(count)
                    flg = False
                    if d[b] == 0:
                        del d[b]
                    break
            if flg:
                print(-1)
        else:
            #データ2の処理
            c = int(u[1])
            l[c] = False
    else:
        #データ0の処理
        A,n = dict(Counter(u[3:])),int(u[1])
        l[n] = A
0