結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー vwxyzvwxyz
提出日時 2022-10-18 10:09:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 203 ms / 1,000 ms
コード長 230 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,832 KB
最終ジャッジ日時 2024-06-28 19:19:10
合計ジャッジ時間 12,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 189 ms
30,512 KB
testcase_04 AC 198 ms
30,652 KB
testcase_05 AC 199 ms
30,564 KB
testcase_06 AC 198 ms
30,424 KB
testcase_07 AC 197 ms
30,412 KB
testcase_08 AC 200 ms
30,472 KB
testcase_09 AC 199 ms
30,652 KB
testcase_10 AC 197 ms
30,700 KB
testcase_11 AC 196 ms
30,624 KB
testcase_12 AC 197 ms
30,652 KB
testcase_13 AC 201 ms
30,832 KB
testcase_14 AC 195 ms
30,632 KB
testcase_15 AC 197 ms
30,632 KB
testcase_16 AC 196 ms
30,484 KB
testcase_17 AC 195 ms
30,544 KB
testcase_18 AC 199 ms
30,516 KB
testcase_19 AC 198 ms
30,548 KB
testcase_20 AC 203 ms
30,524 KB
testcase_21 AC 197 ms
30,592 KB
testcase_22 AC 197 ms
30,568 KB
testcase_23 AC 193 ms
30,364 KB
testcase_24 AC 194 ms
30,308 KB
testcase_25 AC 203 ms
30,344 KB
testcase_26 AC 195 ms
30,424 KB
testcase_27 AC 195 ms
30,352 KB
testcase_28 AC 194 ms
30,160 KB
testcase_29 AC 194 ms
30,212 KB
testcase_30 AC 198 ms
29,972 KB
testcase_31 AC 193 ms
29,804 KB
testcase_32 AC 196 ms
29,476 KB
testcase_33 AC 193 ms
29,236 KB
testcase_34 AC 195 ms
29,076 KB
testcase_35 AC 193 ms
28,916 KB
testcase_36 AC 189 ms
28,944 KB
testcase_37 AC 189 ms
28,896 KB
testcase_38 AC 187 ms
28,812 KB
testcase_39 AC 191 ms
28,752 KB
testcase_40 AC 192 ms
29,688 KB
testcase_41 AC 29 ms
10,496 KB
testcase_42 AC 29 ms
10,496 KB
testcase_43 AC 29 ms
10,496 KB
testcase_44 AC 43 ms
11,648 KB
testcase_45 AC 41 ms
11,520 KB
testcase_46 AC 42 ms
11,648 KB
testcase_47 AC 160 ms
21,828 KB
testcase_48 AC 162 ms
22,916 KB
testcase_49 AC 162 ms
21,768 KB
testcase_50 AC 185 ms
22,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
readline=sys.stdin.readline

N,M=map(int,readline().split())
A=Counter(list(map(int,readline().split())))
B=list(map(int,readline().split()))
for i in range(M):
    B[i]=A[B[i]]
print(*B)
0