結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー hgotohgoto
提出日時 2020-09-26 13:56:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 228,668 KB
実行使用メモリ 12,652 KB
最終ジャッジ日時 2024-06-29 01:14:45
合計ジャッジ時間 8,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 51 ms
12,524 KB
testcase_04 AC 58 ms
12,652 KB
testcase_05 AC 56 ms
12,520 KB
testcase_06 AC 55 ms
12,516 KB
testcase_07 AC 55 ms
12,648 KB
testcase_08 AC 57 ms
12,516 KB
testcase_09 AC 57 ms
12,648 KB
testcase_10 AC 56 ms
12,396 KB
testcase_11 AC 58 ms
12,576 KB
testcase_12 AC 54 ms
12,520 KB
testcase_13 AC 55 ms
12,520 KB
testcase_14 AC 55 ms
12,524 KB
testcase_15 AC 54 ms
12,648 KB
testcase_16 AC 58 ms
12,476 KB
testcase_17 AC 56 ms
12,644 KB
testcase_18 AC 56 ms
12,648 KB
testcase_19 AC 54 ms
12,520 KB
testcase_20 AC 57 ms
12,516 KB
testcase_21 AC 53 ms
12,520 KB
testcase_22 AC 54 ms
12,524 KB
testcase_23 AC 55 ms
12,392 KB
testcase_24 AC 52 ms
12,396 KB
testcase_25 AC 52 ms
12,520 KB
testcase_26 AC 51 ms
12,520 KB
testcase_27 AC 50 ms
12,524 KB
testcase_28 AC 51 ms
12,396 KB
testcase_29 AC 51 ms
12,524 KB
testcase_30 AC 51 ms
12,444 KB
testcase_31 AC 52 ms
12,520 KB
testcase_32 AC 48 ms
12,520 KB
testcase_33 AC 49 ms
12,392 KB
testcase_34 AC 49 ms
12,644 KB
testcase_35 AC 49 ms
12,652 KB
testcase_36 AC 48 ms
12,516 KB
testcase_37 AC 51 ms
12,524 KB
testcase_38 AC 46 ms
12,648 KB
testcase_39 AC 47 ms
12,520 KB
testcase_40 AC 48 ms
12,520 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 5 ms
5,376 KB
testcase_45 AC 5 ms
5,376 KB
testcase_46 AC 5 ms
5,376 KB
testcase_47 AC 36 ms
8,036 KB
testcase_48 AC 45 ms
12,648 KB
testcase_49 AC 43 ms
12,520 KB
testcase_50 AC 35 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <ext/pb_ds/assoc_container.hpp>

using namespace std;
using namespace __gnu_pbds;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, m;
  cin >> n >> m;
  gp_hash_table<long long, int> mp;
  while (n--) {
    long long a;
    cin >> a;
    mp[a]++;
  }
  while (m--) {
    long long b;
    cin >> b;
    cout << mp[b] << (m > 0 ? ' ' : '\n');
  }
  return 0;
}
0