結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー zutsuzutsu
提出日時 2022-05-12 21:11:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 195 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,908 KB
最終ジャッジ日時 2024-07-20 15:30:55
合計ジャッジ時間 12,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 189 ms
30,684 KB
testcase_04 AC 193 ms
29,552 KB
testcase_05 AC 205 ms
29,532 KB
testcase_06 AC 203 ms
30,868 KB
testcase_07 AC 199 ms
30,724 KB
testcase_08 AC 192 ms
30,832 KB
testcase_09 AC 186 ms
30,820 KB
testcase_10 AC 190 ms
30,788 KB
testcase_11 AC 186 ms
30,520 KB
testcase_12 AC 185 ms
30,616 KB
testcase_13 AC 184 ms
30,592 KB
testcase_14 AC 182 ms
30,704 KB
testcase_15 AC 191 ms
30,648 KB
testcase_16 AC 193 ms
30,628 KB
testcase_17 AC 180 ms
29,624 KB
testcase_18 AC 182 ms
30,544 KB
testcase_19 AC 183 ms
30,524 KB
testcase_20 AC 191 ms
30,908 KB
testcase_21 AC 186 ms
30,420 KB
testcase_22 AC 196 ms
30,400 KB
testcase_23 AC 185 ms
30,516 KB
testcase_24 AC 194 ms
30,484 KB
testcase_25 AC 191 ms
30,388 KB
testcase_26 AC 193 ms
30,404 KB
testcase_27 AC 184 ms
30,384 KB
testcase_28 AC 181 ms
30,684 KB
testcase_29 AC 185 ms
30,360 KB
testcase_30 AC 191 ms
30,404 KB
testcase_31 AC 183 ms
29,988 KB
testcase_32 AC 184 ms
29,932 KB
testcase_33 AC 180 ms
29,800 KB
testcase_34 AC 183 ms
30,676 KB
testcase_35 AC 188 ms
30,180 KB
testcase_36 AC 181 ms
30,060 KB
testcase_37 AC 184 ms
30,164 KB
testcase_38 AC 188 ms
30,352 KB
testcase_39 AC 188 ms
30,328 KB
testcase_40 AC 187 ms
29,976 KB
testcase_41 AC 28 ms
10,496 KB
testcase_42 AC 28 ms
10,496 KB
testcase_43 AC 29 ms
10,496 KB
testcase_44 AC 41 ms
11,904 KB
testcase_45 AC 40 ms
11,904 KB
testcase_46 AC 40 ms
11,904 KB
testcase_47 AC 163 ms
22,540 KB
testcase_48 AC 155 ms
24,600 KB
testcase_49 AC 158 ms
22,212 KB
testcase_50 AC 181 ms
26,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N,M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
c = collections.Counter(A)
for b in B:
    print(c[b], end=' ')
print()
0