結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー ShirotsumeShirotsume
提出日時 2022-03-27 01:43:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 267 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,864 KB
最終ジャッジ日時 2024-04-23 16:14:50
合計ジャッジ時間 11,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 187 ms
31,496 KB
testcase_04 AC 188 ms
31,808 KB
testcase_05 AC 187 ms
31,864 KB
testcase_06 AC 188 ms
30,496 KB
testcase_07 AC 188 ms
30,488 KB
testcase_08 AC 188 ms
30,476 KB
testcase_09 AC 191 ms
30,780 KB
testcase_10 AC 188 ms
30,892 KB
testcase_11 AC 190 ms
31,524 KB
testcase_12 AC 181 ms
30,656 KB
testcase_13 AC 190 ms
30,644 KB
testcase_14 AC 189 ms
30,592 KB
testcase_15 AC 184 ms
30,484 KB
testcase_16 AC 189 ms
30,812 KB
testcase_17 AC 188 ms
31,304 KB
testcase_18 AC 192 ms
30,580 KB
testcase_19 AC 193 ms
30,552 KB
testcase_20 AC 192 ms
31,060 KB
testcase_21 AC 188 ms
30,592 KB
testcase_22 AC 188 ms
30,576 KB
testcase_23 AC 189 ms
30,560 KB
testcase_24 AC 191 ms
30,524 KB
testcase_25 AC 188 ms
30,544 KB
testcase_26 AC 192 ms
30,364 KB
testcase_27 AC 187 ms
30,436 KB
testcase_28 AC 186 ms
30,552 KB
testcase_29 AC 184 ms
30,540 KB
testcase_30 AC 193 ms
30,440 KB
testcase_31 AC 192 ms
30,092 KB
testcase_32 AC 186 ms
30,108 KB
testcase_33 AC 185 ms
29,672 KB
testcase_34 AC 194 ms
29,340 KB
testcase_35 AC 180 ms
29,860 KB
testcase_36 AC 183 ms
28,952 KB
testcase_37 AC 177 ms
28,948 KB
testcase_38 AC 183 ms
28,936 KB
testcase_39 AC 186 ms
29,060 KB
testcase_40 AC 189 ms
29,692 KB
testcase_41 AC 31 ms
10,496 KB
testcase_42 AC 29 ms
10,496 KB
testcase_43 AC 29 ms
10,624 KB
testcase_44 AC 42 ms
12,032 KB
testcase_45 AC 41 ms
11,904 KB
testcase_46 AC 42 ms
11,776 KB
testcase_47 AC 156 ms
22,240 KB
testcase_48 AC 155 ms
23,232 KB
testcase_49 AC 159 ms
21,780 KB
testcase_50 AC 177 ms
22,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
from collections import Counter

n, m = mi()

a = Counter(li())
b = li()
c = []
for v in b:
    c.append(a[v])
print(*c)
0