結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー kimiyukikimiyuki
提出日時 2017-02-25 01:49:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 1,000 ms
コード長 476 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 8,076 KB
最終ジャッジ日時 2024-06-11 03:43:31
合計ジャッジ時間 12,360 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 219 ms
8,072 KB
testcase_04 AC 227 ms
7,944 KB
testcase_05 AC 220 ms
7,940 KB
testcase_06 AC 219 ms
7,940 KB
testcase_07 AC 221 ms
7,944 KB
testcase_08 AC 226 ms
8,072 KB
testcase_09 AC 218 ms
7,940 KB
testcase_10 AC 227 ms
7,944 KB
testcase_11 AC 217 ms
8,072 KB
testcase_12 AC 223 ms
7,960 KB
testcase_13 AC 222 ms
7,944 KB
testcase_14 AC 219 ms
8,016 KB
testcase_15 AC 254 ms
8,072 KB
testcase_16 AC 235 ms
7,944 KB
testcase_17 AC 222 ms
7,940 KB
testcase_18 AC 216 ms
8,056 KB
testcase_19 AC 213 ms
8,072 KB
testcase_20 AC 214 ms
8,072 KB
testcase_21 AC 217 ms
7,944 KB
testcase_22 AC 217 ms
7,940 KB
testcase_23 AC 211 ms
7,944 KB
testcase_24 AC 217 ms
7,944 KB
testcase_25 AC 220 ms
7,944 KB
testcase_26 AC 217 ms
7,940 KB
testcase_27 AC 208 ms
7,980 KB
testcase_28 AC 209 ms
7,944 KB
testcase_29 AC 202 ms
8,076 KB
testcase_30 AC 214 ms
7,944 KB
testcase_31 AC 204 ms
7,940 KB
testcase_32 AC 206 ms
7,944 KB
testcase_33 AC 206 ms
7,948 KB
testcase_34 AC 199 ms
7,872 KB
testcase_35 AC 204 ms
7,948 KB
testcase_36 AC 208 ms
7,940 KB
testcase_37 AC 206 ms
8,076 KB
testcase_38 AC 204 ms
7,944 KB
testcase_39 AC 212 ms
7,940 KB
testcase_40 AC 217 ms
8,068 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 17 ms
5,376 KB
testcase_45 AC 16 ms
5,376 KB
testcase_46 AC 17 ms
5,376 KB
testcase_47 AC 171 ms
5,376 KB
testcase_48 AC 159 ms
5,632 KB
testcase_49 AC 168 ms
5,376 KB
testcase_50 AC 209 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
using ll = long long;
using namespace std;
const ll mask = 0xdeadbeef;
int main() {
    int n, m; cin >> n >> m;
    unordered_map<ll, int> f;
    repeat (i,n) {
        ll a; cin >> a;
        f[a^mask] += 1;
    }
    repeat (j,m) {
        ll b; cin >> b;
        int c = f.count(b^mask) ? f[b^mask] : 0;
        cout << c << ' ';
    }
    cout << endl;
    return 0;
}
0