結果

問題 No.182 新規性の虜
ユーザー kou6839kou6839
提出日時 2015-04-16 23:36:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 942 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 3,096 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 53,424 KB
最終ジャッジ日時 2024-12-26 18:48:08
合計ジャッジ時間 18,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashMap<Integer, Integer> map = new HashMap<>();
		for(int i=0;i<n;i++){
			int a = sc.nextInt();
			if(!map.containsKey(a)){
				map.put(a, 1);
			}else{
				map.put(a, map.get(a)+1);
			}
		}
		int ans=0;
		for (Integer  v : map.keySet()) {
			if(map.get(v)==1) ans++;
			
		}
		System.out.println(ans);
	}
}
0