結果

問題 No.182 新規性の虜
ユーザー ffmm00ffmm00
提出日時 2015-06-04 03:35:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 663 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-06-08 03:04:59
合計ジャッジ時間 13,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,456 KB
testcase_01 AC 120 ms
41,016 KB
testcase_02 AC 123 ms
41,140 KB
testcase_03 AC 123 ms
41,388 KB
testcase_04 AC 123 ms
41,136 KB
testcase_05 AC 114 ms
41,524 KB
testcase_06 AC 130 ms
41,608 KB
testcase_07 AC 130 ms
41,340 KB
testcase_08 AC 532 ms
51,516 KB
testcase_09 AC 663 ms
53,496 KB
testcase_10 AC 627 ms
52,784 KB
testcase_11 AC 605 ms
52,424 KB
testcase_12 AC 423 ms
49,780 KB
testcase_13 AC 109 ms
41,336 KB
testcase_14 AC 128 ms
41,268 KB
testcase_15 AC 119 ms
41,136 KB
testcase_16 AC 112 ms
41,120 KB
testcase_17 AC 124 ms
41,276 KB
testcase_18 AC 537 ms
49,040 KB
testcase_19 AC 463 ms
48,828 KB
testcase_20 AC 395 ms
48,480 KB
testcase_21 AC 601 ms
48,960 KB
testcase_22 AC 430 ms
49,072 KB
testcase_23 AC 128 ms
41,492 KB
testcase_24 AC 580 ms
54,000 KB
testcase_25 AC 440 ms
48,264 KB
testcase_26 AC 278 ms
47,880 KB
testcase_27 AC 127 ms
41,592 KB
evil01.txt AC 595 ms
56,160 KB
evil02.txt AC 601 ms
57,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class N182 {

	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);
		Map<Integer, Integer> vt = new HashMap<Integer, Integer>();

		int n = sca.nextInt();
		int[] a = new int[n];

		for (int i = 0; i < n; i++) {
			a[i] = sca.nextInt();
			if (vt.containsKey(a[i]))
				vt.put(a[i], vt.get(a[i]) + 1);
			else
				vt.put(a[i], 1);
		}

		int C = 0;

		for (Map.Entry<Integer, Integer> voter : vt.entrySet()) {
			int S = voter.getValue();
			if (S == 1)
				C++;
		}

		System.out.println(C);

	}

}
0