結果

問題 No.714 回転寿司屋のシミュレート
ユーザー tails1434tails1434
提出日時 2020-01-16 07:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-23 06:57:17
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,888 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 51 ms
59,776 KB
testcase_03 AC 71 ms
67,712 KB
testcase_04 AC 65 ms
63,616 KB
testcase_05 AC 91 ms
73,472 KB
testcase_06 AC 86 ms
71,168 KB
testcase_07 AC 122 ms
76,800 KB
testcase_08 AC 136 ms
76,672 KB
testcase_09 AC 121 ms
76,672 KB
testcase_10 AC 124 ms
77,312 KB
testcase_11 AC 81 ms
69,376 KB
testcase_12 AC 118 ms
76,672 KB
testcase_13 AC 101 ms
76,672 KB
testcase_14 AC 93 ms
73,984 KB
testcase_15 AC 96 ms
74,880 KB
testcase_16 AC 90 ms
73,216 KB
testcase_17 AC 109 ms
76,928 KB
testcase_18 AC 93 ms
74,624 KB
testcase_19 AC 89 ms
73,344 KB
testcase_20 AC 94 ms
74,752 KB
testcase_21 AC 83 ms
70,784 KB
testcase_22 AC 83 ms
71,040 KB
testcase_23 AC 81 ms
70,144 KB
testcase_24 AC 88 ms
72,960 KB
testcase_25 AC 98 ms
74,240 KB
testcase_26 AC 81 ms
70,400 KB
testcase_27 AC 79 ms
70,656 KB
testcase_28 AC 80 ms
69,888 KB
testcase_29 AC 81 ms
70,528 KB
testcase_30 AC 43 ms
53,120 KB
testcase_31 AC 43 ms
53,632 KB
testcase_32 AC 45 ms
53,632 KB
testcase_33 AC 43 ms
53,248 KB
testcase_34 AC 44 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N = int(input())
    d = defaultdict(list)
    for _ in range(N):
        i, *tmp = input().split()
        if i == '0':
            n, m, *A = tmp
            for a in A:
                d[int(n)].append(a)
        if i == '1':
            for j in range(1,21):
                if tmp[0] in d[j]:
                    d[j].remove(tmp[0])
                    print(j)
                    break
            else:
                print(-1)
        if i == '2':
            d[int(tmp[0])].clear()

if __name__ == "__main__":
    main()
0