結果

問題 No.8016 unordered_mapなるたけ落とすマン
ユーザー piddypiddy
提出日時 2020-09-04 16:28:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 347 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 84,992 KB
実行使用メモリ 11,528 KB
最終ジャッジ日時 2024-11-26 01:57:44
合計ジャッジ時間 17,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 223 ms
7,944 KB
testcase_04 AC 252 ms
7,944 KB
testcase_05 AC 254 ms
7,944 KB
testcase_06 AC 249 ms
7,940 KB
testcase_07 AC 255 ms
8,068 KB
testcase_08 AC 247 ms
7,948 KB
testcase_09 AC 246 ms
7,944 KB
testcase_10 AC 243 ms
8,092 KB
testcase_11 AC 247 ms
7,948 KB
testcase_12 AC 249 ms
7,948 KB
testcase_13 AC 241 ms
7,948 KB
testcase_14 AC 236 ms
7,944 KB
testcase_15 TLE -
testcase_16 AC 245 ms
8,072 KB
testcase_17 TLE -
testcase_18 AC 238 ms
8,076 KB
testcase_19 AC 716 ms
7,944 KB
testcase_20 AC 232 ms
7,944 KB
testcase_21 AC 233 ms
7,944 KB
testcase_22 AC 327 ms
7,948 KB
testcase_23 AC 241 ms
7,944 KB
testcase_24 AC 258 ms
7,948 KB
testcase_25 AC 234 ms
7,944 KB
testcase_26 AC 234 ms
7,872 KB
testcase_27 AC 235 ms
8,016 KB
testcase_28 AC 227 ms
7,944 KB
testcase_29 AC 231 ms
8,072 KB
testcase_30 AC 226 ms
7,944 KB
testcase_31 AC 225 ms
7,948 KB
testcase_32 AC 229 ms
8,072 KB
testcase_33 AC 228 ms
7,944 KB
testcase_34 AC 220 ms
7,948 KB
testcase_35 AC 215 ms
7,944 KB
testcase_36 AC 209 ms
8,072 KB
testcase_37 AC 222 ms
8,200 KB
testcase_38 AC 213 ms
7,940 KB
testcase_39 AC 219 ms
7,948 KB
testcase_40 AC 211 ms
7,948 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 19 ms
5,248 KB
testcase_45 AC 18 ms
5,248 KB
testcase_46 AC 18 ms
5,248 KB
testcase_47 AC 190 ms
5,772 KB
testcase_48 AC 171 ms
6,020 KB
testcase_49 AC 187 ms
5,956 KB
testcase_50 AC 225 ms
11,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
using namespace std;
using ll = long long;

int main() {
	int n, m;
	cin >> n >> m;
	unordered_map<ll, int> mp;
	for (int i = 0; i < n; i++) {
		ll a;
		cin >> a;
		mp[a]++;
	}
	for (int i = 0; i < m - 1; i++) {
		ll b;
		cin >> b;
		cout << mp[b] << ' ';
	}
	ll b;
	cin >> b;
	cout << mp[b] << '\n';
}
0