結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー hgotohgoto
提出日時 2021-01-14 08:59:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 241 ms / 1,000 ms
コード長 347 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,184 KB
最終ジャッジ日時 2024-11-23 21:31:06
合計ジャッジ時間 12,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 228 ms
30,964 KB
testcase_04 AC 233 ms
30,612 KB
testcase_05 AC 240 ms
31,184 KB
testcase_06 AC 234 ms
31,168 KB
testcase_07 AC 232 ms
31,148 KB
testcase_08 AC 229 ms
31,128 KB
testcase_09 AC 241 ms
30,972 KB
testcase_10 AC 234 ms
30,968 KB
testcase_11 AC 238 ms
30,916 KB
testcase_12 AC 229 ms
30,992 KB
testcase_13 AC 238 ms
30,972 KB
testcase_14 AC 229 ms
30,820 KB
testcase_15 AC 231 ms
30,804 KB
testcase_16 AC 235 ms
30,788 KB
testcase_17 AC 229 ms
30,748 KB
testcase_18 AC 233 ms
30,108 KB
testcase_19 AC 230 ms
29,976 KB
testcase_20 AC 231 ms
30,116 KB
testcase_21 AC 230 ms
30,104 KB
testcase_22 AC 237 ms
30,184 KB
testcase_23 AC 229 ms
30,084 KB
testcase_24 AC 227 ms
30,116 KB
testcase_25 AC 231 ms
30,104 KB
testcase_26 AC 225 ms
30,120 KB
testcase_27 AC 226 ms
30,120 KB
testcase_28 AC 226 ms
30,104 KB
testcase_29 AC 224 ms
30,104 KB
testcase_30 AC 224 ms
30,120 KB
testcase_31 AC 231 ms
29,976 KB
testcase_32 AC 230 ms
30,100 KB
testcase_33 AC 226 ms
30,104 KB
testcase_34 AC 223 ms
30,424 KB
testcase_35 AC 224 ms
30,392 KB
testcase_36 AC 225 ms
30,380 KB
testcase_37 AC 222 ms
30,352 KB
testcase_38 AC 226 ms
30,336 KB
testcase_39 AC 221 ms
30,348 KB
testcase_40 AC 225 ms
30,304 KB
testcase_41 AC 31 ms
10,496 KB
testcase_42 AC 29 ms
10,624 KB
testcase_43 AC 29 ms
10,624 KB
testcase_44 AC 45 ms
11,904 KB
testcase_45 AC 44 ms
11,904 KB
testcase_46 AC 44 ms
11,904 KB
testcase_47 AC 175 ms
21,112 KB
testcase_48 AC 180 ms
25,104 KB
testcase_49 AC 187 ms
21,912 KB
testcase_50 AC 232 ms
25,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = lambda: stdin.buffer.readline()

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = {}
for x in a:
    if x in d:
        d[x] += 1
    else:
        d[x] = 1
for x in b:
    if x in d:
        print(d[x], end=' ')
    else:
        print(0, end=' ')
print()
0