結果

問題 No.182 新規性の虜
ユーザー kou6839kou6839
提出日時 2015-04-16 23:36:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 685 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 75,860 KB
実行使用メモリ 54,900 KB
最終ジャッジ日時 2024-06-08 02:53:26
合計ジャッジ時間 12,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,080 KB
testcase_01 AC 116 ms
41,388 KB
testcase_02 AC 104 ms
40,184 KB
testcase_03 AC 117 ms
41,448 KB
testcase_04 AC 120 ms
41,432 KB
testcase_05 AC 125 ms
41,020 KB
testcase_06 AC 124 ms
41,400 KB
testcase_07 AC 127 ms
41,336 KB
testcase_08 AC 513 ms
51,668 KB
testcase_09 AC 685 ms
52,872 KB
testcase_10 AC 610 ms
52,464 KB
testcase_11 AC 617 ms
51,932 KB
testcase_12 AC 406 ms
49,336 KB
testcase_13 AC 119 ms
41,728 KB
testcase_14 AC 125 ms
41,488 KB
testcase_15 AC 106 ms
41,372 KB
testcase_16 AC 122 ms
41,428 KB
testcase_17 AC 120 ms
41,408 KB
testcase_18 AC 534 ms
48,564 KB
testcase_19 AC 483 ms
48,920 KB
testcase_20 AC 328 ms
48,700 KB
testcase_21 AC 532 ms
49,012 KB
testcase_22 AC 415 ms
48,792 KB
testcase_23 AC 118 ms
41,264 KB
testcase_24 AC 527 ms
54,900 KB
testcase_25 AC 535 ms
48,168 KB
testcase_26 AC 285 ms
46,976 KB
testcase_27 AC 120 ms
41,496 KB
evil01.txt AC 542 ms
55,912 KB
evil02.txt AC 581 ms
56,192 KB
権限があれば一括ダウンロードができます

ソースコード

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