結果

問題 No.182 新規性の虜
ユーザー トミートミー
提出日時 2024-05-25 00:11:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 173,104 KB
実行使用メモリ 7,944 KB
最終ジャッジ日時 2024-05-25 00:11:32
合計ジャッジ時間 4,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 56 ms
6,940 KB
testcase_10 AC 50 ms
6,944 KB
testcase_11 AC 40 ms
6,940 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 19 ms
6,940 KB
testcase_20 AC 13 ms
6,944 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 44 ms
7,944 KB
testcase_25 AC 19 ms
6,944 KB
testcase_26 AC 9 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
evil01.txt AC 66 ms
7,944 KB
evil02.txt AC 60 ms
7,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<long long>;

int main() {
    ll n;
    cin>>n;
    unordered_map<ll,ll> mp;
    for(ll i=0;i<n;i++){
        ll j;
        cin>>j;
        if(mp.find(j)==mp.end()){
            mp[j]=1;
        }else{
            mp[j]++;
        }
    }
    ll ans=0;
    for(const auto &i:mp){
        if(i.second==1){
            ans+=1;
        }
    }
    cout<<ans<<endl;

    system("pause");
}
0