結果

問題 No.182 新規性の虜
ユーザー rf141rf141
提出日時 2015-08-09 23:35:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 3,112 ms
コンパイル使用メモリ 75,736 KB
実行使用メモリ 53,368 KB
最終ジャッジ日時 2024-06-08 03:14:30
合計ジャッジ時間 13,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,216 KB
testcase_01 AC 122 ms
41,368 KB
testcase_02 AC 114 ms
40,192 KB
testcase_03 AC 107 ms
39,920 KB
testcase_04 AC 120 ms
41,076 KB
testcase_05 AC 109 ms
40,228 KB
testcase_06 AC 105 ms
40,832 KB
testcase_07 AC 127 ms
41,188 KB
testcase_08 AC 563 ms
51,252 KB
testcase_09 AC 686 ms
52,996 KB
testcase_10 AC 557 ms
52,180 KB
testcase_11 AC 520 ms
50,896 KB
testcase_12 AC 406 ms
49,264 KB
testcase_13 AC 118 ms
41,072 KB
testcase_14 AC 121 ms
41,008 KB
testcase_15 AC 110 ms
41,192 KB
testcase_16 AC 118 ms
41,024 KB
testcase_17 AC 118 ms
41,124 KB
testcase_18 AC 521 ms
48,508 KB
testcase_19 AC 429 ms
48,524 KB
testcase_20 AC 325 ms
47,304 KB
testcase_21 AC 498 ms
48,820 KB
testcase_22 AC 402 ms
48,492 KB
testcase_23 AC 121 ms
41,212 KB
testcase_24 AC 536 ms
53,368 KB
testcase_25 AC 452 ms
47,504 KB
testcase_26 AC 298 ms
47,772 KB
testcase_27 AC 116 ms
40,988 KB
evil01.txt AC 546 ms
57,000 KB
evil02.txt AC 570 ms
53,168 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)){
				if(hash.get(now)>2)continue;
				hash.put(now,hash.get(now)+1);
			}
		}
		int count=0;
		for(int key : hash.values()){
			if(key!=1)continue;
			count++;
		}
		return count;
	}
}
0