結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー vorg101vorg101
提出日時 2016-05-22 12:36:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 250 ms / 1,000 ms
コード長 217 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,632 KB
最終ジャッジ日時 2024-10-07 06:30:36
合計ジャッジ時間 12,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 240 ms
29,264 KB
testcase_04 AC 250 ms
29,272 KB
testcase_05 AC 220 ms
29,252 KB
testcase_06 AC 218 ms
29,120 KB
testcase_07 AC 218 ms
29,356 KB
testcase_08 AC 231 ms
29,352 KB
testcase_09 AC 236 ms
29,324 KB
testcase_10 AC 224 ms
29,200 KB
testcase_11 AC 220 ms
29,188 KB
testcase_12 AC 216 ms
29,312 KB
testcase_13 AC 224 ms
29,268 KB
testcase_14 AC 216 ms
29,280 KB
testcase_15 AC 221 ms
29,632 KB
testcase_16 AC 233 ms
29,328 KB
testcase_17 AC 225 ms
29,380 KB
testcase_18 AC 225 ms
29,224 KB
testcase_19 AC 235 ms
29,316 KB
testcase_20 AC 235 ms
29,172 KB
testcase_21 AC 229 ms
29,284 KB
testcase_22 AC 230 ms
29,148 KB
testcase_23 AC 216 ms
29,124 KB
testcase_24 AC 215 ms
29,100 KB
testcase_25 AC 219 ms
29,048 KB
testcase_26 AC 216 ms
29,068 KB
testcase_27 AC 217 ms
28,996 KB
testcase_28 AC 227 ms
28,808 KB
testcase_29 AC 220 ms
28,852 KB
testcase_30 AC 226 ms
28,740 KB
testcase_31 AC 225 ms
28,632 KB
testcase_32 AC 224 ms
28,420 KB
testcase_33 AC 228 ms
28,288 KB
testcase_34 AC 212 ms
28,068 KB
testcase_35 AC 217 ms
27,792 KB
testcase_36 AC 208 ms
27,800 KB
testcase_37 AC 217 ms
27,772 KB
testcase_38 AC 220 ms
27,768 KB
testcase_39 AC 210 ms
28,012 KB
testcase_40 AC 219 ms
27,752 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 28 ms
10,624 KB
testcase_43 AC 27 ms
10,496 KB
testcase_44 AC 41 ms
11,904 KB
testcase_45 AC 39 ms
11,904 KB
testcase_46 AC 40 ms
12,160 KB
testcase_47 AC 170 ms
23,036 KB
testcase_48 AC 170 ms
23,768 KB
testcase_49 AC 181 ms
21,760 KB
testcase_50 AC 202 ms
19,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, M = map(int, input().split(' '))
c = defaultdict(int)
for a in map(int, input().split(' ')):
    c[a] += 1
for b in map(int, input().split(' ')):
    print(c[b], end=' ')
print()
0