結果

問題 No.8016 unordered_mapなるたけ落とすマン
ユーザー motimoti
提出日時 2018-11-11 16:35:36
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 411 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 128,512 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-30 12:45:04
合計ジャッジ時間 15,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,672 KB
testcase_01 AC 5 ms
7,296 KB
testcase_02 AC 5 ms
7,424 KB
testcase_03 AC 256 ms
10,496 KB
testcase_04 AC 263 ms
10,368 KB
testcase_05 AC 265 ms
10,496 KB
testcase_06 AC 264 ms
10,368 KB
testcase_07 AC 262 ms
10,368 KB
testcase_08 AC 261 ms
10,368 KB
testcase_09 AC 261 ms
10,496 KB
testcase_10 AC 260 ms
10,368 KB
testcase_11 TLE -
testcase_12 AC 255 ms
10,496 KB
testcase_13 AC 257 ms
10,496 KB
testcase_14 AC 256 ms
10,368 KB
testcase_15 AC 257 ms
10,496 KB
testcase_16 AC 257 ms
10,368 KB
testcase_17 AC 255 ms
10,368 KB
testcase_18 AC 252 ms
10,368 KB
testcase_19 AC 252 ms
10,368 KB
testcase_20 AC 250 ms
10,368 KB
testcase_21 AC 252 ms
10,368 KB
testcase_22 AC 252 ms
10,496 KB
testcase_23 AC 248 ms
10,368 KB
testcase_24 AC 246 ms
10,496 KB
testcase_25 AC 245 ms
10,368 KB
testcase_26 AC 247 ms
10,368 KB
testcase_27 AC 241 ms
10,496 KB
testcase_28 AC 244 ms
10,368 KB
testcase_29 AC 243 ms
10,368 KB
testcase_30 AC 239 ms
10,496 KB
testcase_31 AC 242 ms
10,368 KB
testcase_32 AC 238 ms
10,368 KB
testcase_33 AC 240 ms
10,368 KB
testcase_34 AC 237 ms
10,368 KB
testcase_35 AC 238 ms
10,368 KB
testcase_36 AC 234 ms
10,368 KB
testcase_37 AC 234 ms
10,496 KB
testcase_38 AC 234 ms
10,368 KB
testcase_39 AC 236 ms
10,368 KB
testcase_40 AC 235 ms
10,496 KB
testcase_41 AC 5 ms
7,424 KB
testcase_42 AC 5 ms
7,424 KB
testcase_43 AC 5 ms
7,424 KB
testcase_44 AC 25 ms
7,552 KB
testcase_45 AC 22 ms
7,552 KB
testcase_46 AC 23 ms
7,680 KB
testcase_47 AC 209 ms
9,216 KB
testcase_48 AC 199 ms
9,472 KB
testcase_49 AC 208 ms
9,344 KB
testcase_50 AC 240 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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