結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー たこしたこし
提出日時 2018-02-20 16:17:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 743 bytes
コンパイル時間 1,230 ms
コンパイル使用メモリ 164,576 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-19 11:23:38
合計ジャッジ時間 10,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 127 ms
11,136 KB
testcase_04 AC 147 ms
11,136 KB
testcase_05 AC 141 ms
11,136 KB
testcase_06 AC 136 ms
11,264 KB
testcase_07 AC 137 ms
11,136 KB
testcase_08 AC 138 ms
11,136 KB
testcase_09 AC 137 ms
11,264 KB
testcase_10 AC 134 ms
11,136 KB
testcase_11 AC 134 ms
11,264 KB
testcase_12 AC 133 ms
11,264 KB
testcase_13 AC 135 ms
11,264 KB
testcase_14 AC 133 ms
11,264 KB
testcase_15 AC 128 ms
11,136 KB
testcase_16 AC 129 ms
11,136 KB
testcase_17 AC 132 ms
11,136 KB
testcase_18 AC 130 ms
11,264 KB
testcase_19 AC 130 ms
11,136 KB
testcase_20 AC 131 ms
11,264 KB
testcase_21 AC 126 ms
11,264 KB
testcase_22 AC 123 ms
11,136 KB
testcase_23 AC 124 ms
11,136 KB
testcase_24 AC 124 ms
11,136 KB
testcase_25 AC 123 ms
11,136 KB
testcase_26 AC 123 ms
11,008 KB
testcase_27 AC 120 ms
11,136 KB
testcase_28 AC 116 ms
11,264 KB
testcase_29 AC 118 ms
11,136 KB
testcase_30 AC 115 ms
11,264 KB
testcase_31 AC 121 ms
11,264 KB
testcase_32 AC 123 ms
11,136 KB
testcase_33 AC 117 ms
11,264 KB
testcase_34 AC 115 ms
11,136 KB
testcase_35 AC 116 ms
11,136 KB
testcase_36 AC 108 ms
11,264 KB
testcase_37 AC 103 ms
11,136 KB
testcase_38 AC 106 ms
11,136 KB
testcase_39 AC 106 ms
11,136 KB
testcase_40 AC 105 ms
11,136 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 10 ms
5,376 KB
testcase_45 AC 9 ms
5,376 KB
testcase_46 AC 10 ms
5,376 KB
testcase_47 AC 105 ms
8,448 KB
testcase_48 AC 118 ms
8,704 KB
testcase_49 AC 117 ms
8,832 KB
testcase_50 AC 111 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define INF 100000000
#define YJ 1145141919
#define INF_INT_MAX 2147483647
#define INF_LL_MAX 9223372036854775807
#define EPS 1e-10
#define Pi acos(-1)
#define LL long long
#define ULL unsigned long long
#define LD long double

const int MAX_N = 100005;
const int MAX_M = 100005;

int N, M;
LL A[MAX_N], B[MAX_M];

map<LL, int> m;

int main()
{
  cin >> N >> M;
  for(unsigned int index = 0; index < N; index++) {
    cin >> A[index];
    m[A[index]]++;
  }
  for(unsigned int index = 0; index < M; index++) {
    cin >> B[index];
  }

  for(unsigned int index = 0; index < M; index++) {
    cout << m[B[index]];
    if(index < M-1) {
      cout << " ";
    }
  }
  cout << endl;

  return 0;
}
0