結果

問題 No.8016 unordered_mapなるたけ落とすマン
ユーザー motimoti
提出日時 2018-11-11 16:46:20
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 488 bytes
コンパイル時間 1,116 ms
コンパイル使用メモリ 139,312 KB
実行使用メモリ 17,592 KB
最終ジャッジ日時 2024-11-30 12:46:09
合計ジャッジ時間 14,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
12,544 KB
testcase_01 AC 3 ms
7,268 KB
testcase_02 AC 4 ms
7,312 KB
testcase_03 AC 223 ms
10,496 KB
testcase_04 AC 232 ms
10,368 KB
testcase_05 AC 222 ms
10,368 KB
testcase_06 AC 221 ms
10,368 KB
testcase_07 AC 221 ms
10,368 KB
testcase_08 AC 237 ms
10,368 KB
testcase_09 AC 223 ms
10,496 KB
testcase_10 AC 223 ms
10,368 KB
testcase_11 TLE -
testcase_12 AC 224 ms
10,496 KB
testcase_13 AC 230 ms
10,496 KB
testcase_14 AC 236 ms
10,496 KB
testcase_15 AC 221 ms
10,368 KB
testcase_16 AC 248 ms
10,460 KB
testcase_17 AC 231 ms
10,496 KB
testcase_18 AC 226 ms
10,368 KB
testcase_19 AC 216 ms
10,368 KB
testcase_20 AC 215 ms
10,368 KB
testcase_21 AC 222 ms
10,368 KB
testcase_22 AC 215 ms
10,496 KB
testcase_23 AC 226 ms
10,496 KB
testcase_24 AC 214 ms
10,368 KB
testcase_25 AC 218 ms
10,368 KB
testcase_26 AC 211 ms
10,476 KB
testcase_27 AC 212 ms
10,368 KB
testcase_28 AC 207 ms
10,492 KB
testcase_29 AC 215 ms
10,368 KB
testcase_30 AC 216 ms
10,368 KB
testcase_31 AC 221 ms
10,368 KB
testcase_32 AC 208 ms
10,496 KB
testcase_33 AC 206 ms
10,404 KB
testcase_34 AC 211 ms
10,368 KB
testcase_35 AC 200 ms
10,368 KB
testcase_36 AC 202 ms
10,368 KB
testcase_37 AC 214 ms
10,496 KB
testcase_38 AC 203 ms
10,400 KB
testcase_39 AC 201 ms
10,488 KB
testcase_40 AC 198 ms
10,336 KB
testcase_41 AC 3 ms
7,328 KB
testcase_42 AC 4 ms
7,412 KB
testcase_43 AC 3 ms
7,412 KB
testcase_44 AC 19 ms
7,552 KB
testcase_45 AC 17 ms
7,552 KB
testcase_46 AC 18 ms
7,552 KB
testcase_47 AC 177 ms
9,164 KB
testcase_48 AC 169 ms
9,380 KB
testcase_49 AC 178 ms
9,452 KB
testcase_50 AC 221 ms
17,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <unordered_map>
#include <iostream>
#include <random>
int main() {
    int n, m;
    std::cin >> n >> m;
    std::unordered_map<int64_t, int> mp;
    int offset = std::random_device()();
    mp.reserve(500000);
    for (int i = 0; i < n; i++) {
        int64_t x; std::cin >> x;
        mp[x + offset]++;
    }
    for (int i = 0; i < m; i++) {
        int64_t x; std::cin >> x;
        if (i) std::cout << " ";
        std::cout << mp[x + offset];
    }
    std::cout << "\n";
}
0