結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー 👑 rin204rin204
提出日時 2022-03-26 14:39:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 186 ms / 1,000 ms
コード長 192 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,084 KB
最終ジャッジ日時 2024-10-15 06:28:11
合計ジャッジ時間 11,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 170 ms
30,896 KB
testcase_04 AC 173 ms
29,564 KB
testcase_05 AC 177 ms
29,668 KB
testcase_06 AC 178 ms
30,380 KB
testcase_07 AC 179 ms
30,416 KB
testcase_08 AC 179 ms
30,980 KB
testcase_09 AC 181 ms
30,972 KB
testcase_10 AC 181 ms
30,904 KB
testcase_11 AC 177 ms
30,940 KB
testcase_12 AC 179 ms
31,032 KB
testcase_13 AC 186 ms
31,024 KB
testcase_14 AC 181 ms
30,888 KB
testcase_15 AC 178 ms
29,688 KB
testcase_16 AC 181 ms
30,996 KB
testcase_17 AC 174 ms
31,084 KB
testcase_18 AC 176 ms
30,848 KB
testcase_19 AC 175 ms
30,732 KB
testcase_20 AC 175 ms
30,832 KB
testcase_21 AC 176 ms
30,788 KB
testcase_22 AC 179 ms
30,768 KB
testcase_23 AC 176 ms
30,756 KB
testcase_24 AC 177 ms
30,924 KB
testcase_25 AC 176 ms
30,872 KB
testcase_26 AC 171 ms
30,616 KB
testcase_27 AC 174 ms
30,676 KB
testcase_28 AC 174 ms
30,604 KB
testcase_29 AC 176 ms
30,508 KB
testcase_30 AC 172 ms
30,300 KB
testcase_31 AC 177 ms
30,276 KB
testcase_32 AC 182 ms
29,924 KB
testcase_33 AC 182 ms
29,676 KB
testcase_34 AC 175 ms
30,680 KB
testcase_35 AC 172 ms
30,296 KB
testcase_36 AC 172 ms
30,324 KB
testcase_37 AC 178 ms
30,180 KB
testcase_38 AC 170 ms
30,192 KB
testcase_39 AC 169 ms
30,368 KB
testcase_40 AC 173 ms
30,008 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 28 ms
10,496 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 39 ms
12,160 KB
testcase_45 AC 39 ms
12,032 KB
testcase_46 AC 40 ms
11,904 KB
testcase_47 AC 142 ms
22,544 KB
testcase_48 AC 140 ms
24,984 KB
testcase_49 AC 141 ms
22,232 KB
testcase_50 AC 174 ms
26,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
cnt = {}
for a in A:
    cnt[a] = cnt.get(a, 0) + 1

print(*[cnt.get(b, 0) for b in B])
0