結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
16,768 KB
testcase_01 AC 9 ms
11,648 KB
testcase_02 AC 9 ms
11,520 KB
testcase_03 AC 259 ms
14,592 KB
testcase_04 AC 271 ms
14,592 KB
testcase_05 AC 269 ms
14,592 KB
testcase_06 AC 268 ms
14,592 KB
testcase_07 AC 272 ms
14,592 KB
testcase_08 AC 267 ms
14,592 KB
testcase_09 TLE -
testcase_10 AC 267 ms
14,720 KB
testcase_11 AC 267 ms
14,592 KB
testcase_12 AC 265 ms
14,720 KB
testcase_13 AC 264 ms
14,720 KB
testcase_14 AC 261 ms
14,592 KB
testcase_15 AC 259 ms
14,720 KB
testcase_16 AC 259 ms
14,720 KB
testcase_17 AC 253 ms
14,592 KB
testcase_18 AC 259 ms
14,720 KB
testcase_19 AC 253 ms
14,592 KB
testcase_20 AC 249 ms
14,720 KB
testcase_21 AC 255 ms
14,720 KB
testcase_22 AC 254 ms
14,720 KB
testcase_23 AC 256 ms
14,592 KB
testcase_24 AC 253 ms
14,592 KB
testcase_25 AC 251 ms
14,592 KB
testcase_26 AC 255 ms
14,592 KB
testcase_27 AC 253 ms
14,720 KB
testcase_28 AC 252 ms
14,720 KB
testcase_29 AC 245 ms
14,592 KB
testcase_30 AC 245 ms
14,592 KB
testcase_31 AC 242 ms
14,720 KB
testcase_32 AC 247 ms
14,720 KB
testcase_33 AC 245 ms
14,720 KB
testcase_34 AC 246 ms
14,592 KB
testcase_35 AC 246 ms
14,592 KB
testcase_36 AC 238 ms
14,592 KB
testcase_37 AC 238 ms
14,592 KB
testcase_38 AC 238 ms
14,720 KB
testcase_39 AC 236 ms
14,592 KB
testcase_40 AC 233 ms
14,720 KB
testcase_41 AC 9 ms
11,520 KB
testcase_42 AC 9 ms
11,520 KB
testcase_43 AC 10 ms
11,520 KB
testcase_44 AC 28 ms
11,648 KB
testcase_45 AC 26 ms
11,648 KB
testcase_46 AC 27 ms
11,648 KB
testcase_47 AC 217 ms
13,440 KB
testcase_48 AC 204 ms
13,696 KB
testcase_49 AC 215 ms
13,568 KB
testcase_50 AC 252 ms
16,896 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(1000000);
    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