結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー hgotohgoto
提出日時 2021-01-14 08:49:27
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 320 bytes
コンパイル時間 2,590 ms
コンパイル使用メモリ 126,976 KB
実行使用メモリ 13,088 KB
最終ジャッジ日時 2024-11-23 21:20:20
合計ジャッジ時間 13,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
13,088 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 41 ms
7,716 KB
testcase_04 AC 62 ms
7,964 KB
testcase_05 AC 61 ms
7,840 KB
testcase_06 AC 62 ms
7,712 KB
testcase_07 AC 61 ms
7,840 KB
testcase_08 AC 60 ms
7,716 KB
testcase_09 AC 62 ms
7,712 KB
testcase_10 AC 58 ms
7,712 KB
testcase_11 AC 60 ms
7,840 KB
testcase_12 AC 57 ms
7,712 KB
testcase_13 AC 58 ms
7,840 KB
testcase_14 AC 56 ms
7,712 KB
testcase_15 TLE -
testcase_16 AC 57 ms
7,716 KB
testcase_17 TLE -
testcase_18 AC 51 ms
7,836 KB
testcase_19 AC 403 ms
7,840 KB
testcase_20 AC 54 ms
7,716 KB
testcase_21 AC 53 ms
7,836 KB
testcase_22 AC 121 ms
7,708 KB
testcase_23 AC 61 ms
7,840 KB
testcase_24 AC 69 ms
7,712 KB
testcase_25 AC 49 ms
7,836 KB
testcase_26 AC 53 ms
7,840 KB
testcase_27 AC 49 ms
7,712 KB
testcase_28 AC 53 ms
7,840 KB
testcase_29 AC 49 ms
7,712 KB
testcase_30 AC 51 ms
7,840 KB
testcase_31 AC 50 ms
7,712 KB
testcase_32 AC 52 ms
7,836 KB
testcase_33 AC 52 ms
7,964 KB
testcase_34 AC 53 ms
7,840 KB
testcase_35 AC 51 ms
7,712 KB
testcase_36 AC 50 ms
7,712 KB
testcase_37 AC 51 ms
7,712 KB
testcase_38 AC 49 ms
7,840 KB
testcase_39 AC 51 ms
7,716 KB
testcase_40 AC 50 ms
7,856 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 5 ms
5,248 KB
testcase_45 AC 6 ms
5,248 KB
testcase_46 AC 6 ms
5,248 KB
testcase_47 AC 44 ms
5,668 KB
testcase_48 AC 48 ms
5,920 KB
testcase_49 AC 45 ms
5,928 KB
testcase_50 AC 38 ms
11,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	cin.tie(0)->sync_with_stdio(0);
	int n, m;
	cin >> n >> m;
	unordered_map<ll, int> mp;
	while (n--) {
		ll x;
		cin >> x;
		mp[x]++;
	}
	while (m--) {
		ll x;
		cin >> x;
		cout << mp[x] << (m > 0 ? ' ' : '\n');
	}
}
0