結果

問題 No.182 新規性の虜
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 15:01:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 749 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 75,268 KB
実行使用メモリ 65,452 KB
最終ジャッジ日時 2024-09-13 11:25:29
合計ジャッジ時間 14,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,740 KB
testcase_01 AC 134 ms
54,088 KB
testcase_02 AC 134 ms
53,556 KB
testcase_03 AC 136 ms
53,916 KB
testcase_04 AC 134 ms
54,100 KB
testcase_05 AC 137 ms
53,648 KB
testcase_06 AC 137 ms
54,056 KB
testcase_07 AC 139 ms
53,944 KB
testcase_08 AC 582 ms
61,804 KB
testcase_09 AC 749 ms
63,768 KB
testcase_10 AC 655 ms
63,448 KB
testcase_11 AC 660 ms
61,668 KB
testcase_12 AC 451 ms
59,516 KB
testcase_13 AC 135 ms
54,128 KB
testcase_14 AC 139 ms
54,052 KB
testcase_15 AC 133 ms
53,760 KB
testcase_16 AC 136 ms
53,860 KB
testcase_17 AC 138 ms
54,036 KB
testcase_18 AC 593 ms
59,316 KB
testcase_19 AC 505 ms
58,968 KB
testcase_20 AC 426 ms
59,276 KB
testcase_21 AC 588 ms
59,476 KB
testcase_22 AC 482 ms
59,244 KB
testcase_23 AC 134 ms
53,832 KB
testcase_24 AC 590 ms
65,452 KB
testcase_25 AC 562 ms
58,928 KB
testcase_26 AC 309 ms
58,712 KB
testcase_27 AC 133 ms
54,352 KB
evil01.txt AC 696 ms
65,020 KB
evil02.txt AC 699 ms
64,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i=0; i<n; i++) {
			int temp = sc.nextInt();
			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