結果

問題 No.182 新規性の虜
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-07-10 15:30:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 776 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 5,315 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-06-08 07:29:31
合計ジャッジ時間 17,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,544 KB
testcase_01 AC 134 ms
40,896 KB
testcase_02 AC 134 ms
41,084 KB
testcase_03 AC 136 ms
41,160 KB
testcase_04 AC 134 ms
41,076 KB
testcase_05 AC 137 ms
41,080 KB
testcase_06 AC 136 ms
41,308 KB
testcase_07 AC 137 ms
41,216 KB
testcase_08 AC 617 ms
51,600 KB
testcase_09 AC 776 ms
52,836 KB
testcase_10 AC 711 ms
52,596 KB
testcase_11 AC 684 ms
51,868 KB
testcase_12 AC 474 ms
49,096 KB
testcase_13 AC 140 ms
41,212 KB
testcase_14 AC 138 ms
41,124 KB
testcase_15 AC 133 ms
41,128 KB
testcase_16 AC 144 ms
41,400 KB
testcase_17 AC 141 ms
41,292 KB
testcase_18 AC 617 ms
48,116 KB
testcase_19 AC 559 ms
48,476 KB
testcase_20 AC 465 ms
48,360 KB
testcase_21 AC 662 ms
48,816 KB
testcase_22 AC 485 ms
48,364 KB
testcase_23 AC 136 ms
41,352 KB
testcase_24 AC 646 ms
53,560 KB
testcase_25 AC 597 ms
47,892 KB
testcase_26 AC 311 ms
47,668 KB
testcase_27 AC 133 ms
41,484 KB
evil01.txt AC 713 ms
56,132 KB
evil02.txt AC 753 ms
56,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b20160710;

import java.util.HashMap;
import java.util.Scanner;

public class No_182 {
	public static void main(String[] args) {
		HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		for (int i = 0; i < N; i++) {
			int A = sc.nextInt();
			if (map.containsKey(A)) {
				int mp = map.get(A) + 1;
				map.put(A, mp);
			} else {
				map.put(A, 1);
			}
		}
		int c = 0;
		for (Integer key : map.keySet()) {
			if (map.get(key) == 1) {
				c++;
			}
		}
		System.out.println(c);
	}
}
0