結果

問題 No.182 新規性の虜
ユーザー 184184
提出日時 2015-04-16 23:25:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 370 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 51,456 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-12-26 18:43:14
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         int n;scanf("%d",&n);
      |               ~~~~~^~~~~~~~~
main.cpp:14:35: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         for(int i=0;i<n;i++){scanf("%d",&num);cnt[num]++;}
      |                              ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm> 
#include <map>
#include <vector> 

using namespace std;

int main(){
	int n;scanf("%d",&n);
	int ans=0;map<int,int> cnt;
	int num;
	for(int i=0;i<n;i++){scanf("%d",&num);cnt[num]++;}
	for(auto it=cnt.begin();it!=cnt.end();it++)if(it->second==1)ans++;
	printf("%d\n",ans);
	
	
	
	
	return 0;
}
0