結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー shora_kujira16shora_kujira16
提出日時 2016-05-22 00:53:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 224 ms / 1,000 ms
コード長 874 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,948 KB
最終ジャッジ日時 2024-10-07 05:55:38
合計ジャッジ時間 12,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 212 ms
35,456 KB
testcase_04 AC 224 ms
35,948 KB
testcase_05 AC 222 ms
35,796 KB
testcase_06 AC 221 ms
35,784 KB
testcase_07 AC 220 ms
35,780 KB
testcase_08 AC 219 ms
35,776 KB
testcase_09 AC 222 ms
34,632 KB
testcase_10 AC 218 ms
35,620 KB
testcase_11 AC 222 ms
35,608 KB
testcase_12 AC 220 ms
35,576 KB
testcase_13 AC 223 ms
35,452 KB
testcase_14 AC 223 ms
35,448 KB
testcase_15 AC 216 ms
35,436 KB
testcase_16 AC 218 ms
35,416 KB
testcase_17 AC 216 ms
35,408 KB
testcase_18 AC 217 ms
35,508 KB
testcase_19 AC 217 ms
35,096 KB
testcase_20 AC 218 ms
35,204 KB
testcase_21 AC 217 ms
35,320 KB
testcase_22 AC 223 ms
35,176 KB
testcase_23 AC 221 ms
35,032 KB
testcase_24 AC 219 ms
35,004 KB
testcase_25 AC 218 ms
34,904 KB
testcase_26 AC 220 ms
34,720 KB
testcase_27 AC 216 ms
34,776 KB
testcase_28 AC 218 ms
34,464 KB
testcase_29 AC 217 ms
34,248 KB
testcase_30 AC 217 ms
34,012 KB
testcase_31 AC 215 ms
33,768 KB
testcase_32 AC 215 ms
33,300 KB
testcase_33 AC 214 ms
32,680 KB
testcase_34 AC 213 ms
32,056 KB
testcase_35 AC 206 ms
31,524 KB
testcase_36 AC 208 ms
31,516 KB
testcase_37 AC 210 ms
31,652 KB
testcase_38 AC 212 ms
31,768 KB
testcase_39 AC 214 ms
31,500 KB
testcase_40 AC 210 ms
32,132 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 29 ms
10,752 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 44 ms
12,160 KB
testcase_45 AC 43 ms
12,160 KB
testcase_46 AC 43 ms
12,160 KB
testcase_47 AC 169 ms
24,176 KB
testcase_48 AC 179 ms
27,456 KB
testcase_49 AC 177 ms
25,312 KB
testcase_50 AC 211 ms
28,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

class Io:

    def __init__(self):
        self.tokens_index = 0
        self.tokens = []

    def next_line(self):
        assert self.tokens_index >= len(self.tokens)
        return input()

    def next(self):
        if self.tokens_index < len(self.tokens):
            token = self.tokens[self.tokens_index]
            self.tokens_index += 1
            return token
        else:
            self.tokens = self.next_line().split()
            self.tokens_index = 0
            return self.next()

    def next_int(self):
        return int(self.next())

    def next_float(self):
        return float(self.next())


def main():
    io = Io()
    n = io.next_int()
    m = io.next_int()
    c = collections.Counter(io.next_int() for i in range(n))
    print(' '.join(str(c[io.next_int()]) for i in range(m)))

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