結果

問題 No.182 新規性の虜
ユーザー rf141rf141
提出日時 2015-08-09 22:13:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 681 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 3,660 ms
コンパイル使用メモリ 84,396 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-12-26 19:36:32
合計ジャッジ時間 15,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,132 KB
testcase_01 AC 121 ms
41,004 KB
testcase_02 AC 129 ms
41,184 KB
testcase_03 AC 125 ms
40,640 KB
testcase_04 AC 112 ms
39,820 KB
testcase_05 AC 133 ms
40,192 KB
testcase_06 AC 138 ms
40,960 KB
testcase_07 AC 147 ms
41,316 KB
testcase_08 AC 616 ms
51,216 KB
testcase_09 AC 681 ms
52,592 KB
testcase_10 AC 674 ms
52,260 KB
testcase_11 AC 665 ms
51,636 KB
testcase_12 AC 470 ms
49,012 KB
testcase_13 AC 130 ms
41,164 KB
testcase_14 AC 134 ms
41,188 KB
testcase_15 AC 133 ms
40,864 KB
testcase_16 AC 138 ms
41,088 KB
testcase_17 AC 140 ms
41,176 KB
testcase_18 AC 586 ms
48,676 KB
testcase_19 AC 498 ms
48,408 KB
testcase_20 AC 465 ms
48,356 KB
testcase_21 AC 592 ms
48,740 KB
testcase_22 AC 450 ms
48,368 KB
testcase_23 AC 112 ms
40,032 KB
testcase_24 AC 595 ms
53,876 KB
testcase_25 AC 565 ms
47,604 KB
testcase_26 AC 297 ms
47,548 KB
testcase_27 AC 133 ms
41,108 KB
evil01.txt AC 667 ms
55,456 KB
evil02.txt AC 679 ms
54,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Novelty{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		System.out.println(counter(n,scan));
	}
	public static int counter(int n, Scanner scan){
		HashMap<Integer,Integer> hash = new HashMap<Integer,Integer>();
		for(int i = 0; i < n; i++){
			int now = scan.nextInt();
			if(!hash.containsKey(now)){
				hash.put(now,1);
				continue;
			}
			if(hash.containsKey(now)){
				hash.put(now,hash.get(now)+1);
			}
		}
		int count=0;
		for(int key : hash.values()){
			if(key!=1)continue;
			count++;
		}
		return count;
	}
}
0