結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー ミドリムシミドリムシ
提出日時 2018-03-04 13:54:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 454 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-07-07 14:49:41
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 125 ms
9,908 KB
testcase_04 AC 139 ms
9,984 KB
testcase_05 AC 139 ms
10,032 KB
testcase_06 AC 136 ms
9,912 KB
testcase_07 AC 138 ms
9,912 KB
testcase_08 AC 136 ms
10,032 KB
testcase_09 AC 138 ms
10,036 KB
testcase_10 AC 133 ms
9,908 KB
testcase_11 AC 134 ms
10,036 KB
testcase_12 AC 133 ms
10,036 KB
testcase_13 AC 132 ms
9,912 KB
testcase_14 AC 132 ms
9,904 KB
testcase_15 AC 130 ms
9,856 KB
testcase_16 AC 127 ms
9,908 KB
testcase_17 AC 130 ms
10,036 KB
testcase_18 AC 131 ms
9,908 KB
testcase_19 AC 124 ms
9,916 KB
testcase_20 AC 122 ms
9,904 KB
testcase_21 AC 125 ms
10,036 KB
testcase_22 AC 122 ms
9,908 KB
testcase_23 AC 120 ms
10,036 KB
testcase_24 AC 123 ms
9,984 KB
testcase_25 AC 123 ms
9,984 KB
testcase_26 AC 116 ms
10,036 KB
testcase_27 AC 116 ms
10,036 KB
testcase_28 AC 116 ms
9,912 KB
testcase_29 AC 114 ms
9,908 KB
testcase_30 AC 112 ms
9,856 KB
testcase_31 AC 114 ms
9,904 KB
testcase_32 AC 113 ms
9,856 KB
testcase_33 AC 111 ms
9,896 KB
testcase_34 AC 107 ms
9,892 KB
testcase_35 AC 100 ms
9,984 KB
testcase_36 AC 108 ms
9,880 KB
testcase_37 AC 107 ms
9,984 KB
testcase_38 AC 104 ms
10,112 KB
testcase_39 AC 103 ms
9,848 KB
testcase_40 AC 102 ms
9,820 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 10 ms
5,376 KB
testcase_45 AC 9 ms
5,376 KB
testcase_46 AC 9 ms
5,376 KB
testcase_47 AC 101 ms
7,552 KB
testcase_48 AC 115 ms
7,680 KB
testcase_49 AC 113 ms
7,680 KB
testcase_50 AC 106 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
using namespace std;

int main(){
    int N, M;
    cin >> N >> M;
    map<long, int> array_A;
    for(int i = 0; i < N; i++){
        long num;
        cin >> num;
        array_A[num]++;
    }
    string ans;
    for(int i = 0; i < M; i++){
        long num;
        cin >> num;
        ans += to_string(array_A[num]) + " ";
    }
    ans.pop_back();
    cout << ans << endl;
}
0