結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 37 ms
5,644 KB
testcase_09 AC 60 ms
6,664 KB
testcase_10 AC 49 ms
6,404 KB
testcase_11 AC 43 ms
6,020 KB
testcase_12 AC 18 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 27 ms
5,248 KB
testcase_19 AC 20 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 29 ms
5,248 KB
testcase_22 AC 16 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 45 ms
7,944 KB
testcase_25 AC 21 ms
5,248 KB
testcase_26 AC 9 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
evil01.txt AC 69 ms
7,940 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