結果

問題 No.182 新規性の虜
ユーザー karinohito
提出日時 2022-12-09 13:34:59
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 153 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 199,408 KB
最終ジャッジ日時 2025-02-09 06:50:32
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;int main(){int N,a=0;cin>>N;map<int,int>M;while(cin>>N)M[N]++;for(auto v:M)a+=(v.second==1);cout<<a<<endl;}
0