結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 197 ms
31,332 KB
testcase_04 AC 198 ms
31,764 KB
testcase_05 AC 197 ms
31,736 KB
testcase_06 AC 198 ms
30,368 KB
testcase_07 AC 201 ms
30,232 KB
testcase_08 AC 198 ms
30,476 KB
testcase_09 AC 199 ms
30,660 KB
testcase_10 AC 200 ms
30,772 KB
testcase_11 AC 199 ms
31,396 KB
testcase_12 AC 197 ms
30,588 KB
testcase_13 AC 200 ms
30,516 KB
testcase_14 AC 201 ms
30,464 KB
testcase_15 AC 201 ms
30,232 KB
testcase_16 AC 197 ms
30,492 KB
testcase_17 AC 197 ms
31,172 KB
testcase_18 AC 200 ms
30,452 KB
testcase_19 AC 200 ms
30,620 KB
testcase_20 AC 197 ms
31,056 KB
testcase_21 AC 196 ms
30,524 KB
testcase_22 AC 197 ms
30,320 KB
testcase_23 AC 197 ms
30,496 KB
testcase_24 AC 201 ms
30,400 KB
testcase_25 AC 201 ms
30,424 KB
testcase_26 AC 197 ms
30,232 KB
testcase_27 AC 196 ms
30,252 KB
testcase_28 AC 198 ms
30,552 KB
testcase_29 AC 197 ms
30,216 KB
testcase_30 AC 196 ms
30,360 KB
testcase_31 AC 198 ms
29,964 KB
testcase_32 AC 197 ms
29,872 KB
testcase_33 AC 193 ms
29,624 KB
testcase_34 AC 192 ms
29,296 KB
testcase_35 AC 195 ms
29,728 KB
testcase_36 AC 194 ms
28,820 KB
testcase_37 AC 192 ms
28,820 KB
testcase_38 AC 196 ms
28,808 KB
testcase_39 AC 197 ms
28,808 KB
testcase_40 AC 196 ms
29,692 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 31 ms
10,368 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 43 ms
11,776 KB
testcase_45 AC 42 ms
11,776 KB
testcase_46 AC 42 ms
11,776 KB
testcase_47 AC 161 ms
22,244 KB
testcase_48 AC 164 ms
23,040 KB
testcase_49 AC 165 ms
21,788 KB
testcase_50 AC 184 ms
22,600 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