結果

問題 No.182 新規性の虜
ユーザー YukimotoPGYukimotoPG
提出日時 2019-03-01 14:05:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 694 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 76,192 KB
実行使用メモリ 61,896 KB
最終ジャッジ日時 2024-06-23 12:03:01
合計ジャッジ時間 12,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,436 KB
testcase_01 AC 128 ms
53,732 KB
testcase_02 AC 129 ms
53,932 KB
testcase_03 AC 136 ms
54,000 KB
testcase_04 AC 133 ms
54,176 KB
testcase_05 AC 127 ms
54,028 KB
testcase_06 AC 136 ms
54,248 KB
testcase_07 AC 127 ms
53,992 KB
testcase_08 AC 513 ms
61,896 KB
testcase_09 AC 632 ms
52,652 KB
testcase_10 AC 694 ms
52,452 KB
testcase_11 AC 552 ms
52,192 KB
testcase_12 AC 323 ms
49,388 KB
testcase_13 AC 123 ms
41,024 KB
testcase_14 AC 126 ms
41,164 KB
testcase_15 AC 122 ms
41,396 KB
testcase_16 AC 107 ms
39,936 KB
testcase_17 AC 130 ms
41,292 KB
testcase_18 AC 467 ms
48,916 KB
testcase_19 AC 394 ms
48,456 KB
testcase_20 AC 305 ms
48,060 KB
testcase_21 AC 515 ms
49,260 KB
testcase_22 AC 347 ms
48,452 KB
testcase_23 AC 124 ms
41,136 KB
testcase_24 AC 482 ms
53,536 KB
testcase_25 AC 469 ms
47,896 KB
testcase_26 AC 236 ms
47,292 KB
testcase_27 AC 118 ms
41,048 KB
evil01.txt AC 595 ms
54,812 KB
evil02.txt AC 590 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = Integer.parseInt(sc.next());
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i=0; i<n; i++) {
			int temp = Integer.parseInt(sc.next());
			map.put(temp, map.getOrDefault(temp,0)+1);
		}
		
		int ans = 0;
		for (Map.Entry<Integer, Integer> e : map.entrySet()) {
			if (e.getValue() == 1) ans++;
		}
		System.out.println(ans);
	}
}
0