結果

問題 No.182 新規性の虜
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-17 21:26:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 788 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 65,732 KB
最終ジャッジ日時 2024-06-08 12:30:40
合計ジャッジ時間 14,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,056 KB
testcase_01 AC 136 ms
53,952 KB
testcase_02 AC 134 ms
54,140 KB
testcase_03 AC 134 ms
54,144 KB
testcase_04 AC 136 ms
54,016 KB
testcase_05 AC 141 ms
53,872 KB
testcase_06 AC 137 ms
54,212 KB
testcase_07 AC 136 ms
54,148 KB
testcase_08 AC 622 ms
61,800 KB
testcase_09 AC 788 ms
63,612 KB
testcase_10 AC 705 ms
63,528 KB
testcase_11 AC 672 ms
62,640 KB
testcase_12 AC 477 ms
59,644 KB
testcase_13 AC 136 ms
54,172 KB
testcase_14 AC 140 ms
53,892 KB
testcase_15 AC 131 ms
54,200 KB
testcase_16 AC 135 ms
54,152 KB
testcase_17 AC 143 ms
54,100 KB
testcase_18 AC 619 ms
59,628 KB
testcase_19 AC 550 ms
59,596 KB
testcase_20 AC 457 ms
59,408 KB
testcase_21 AC 645 ms
59,408 KB
testcase_22 AC 455 ms
59,476 KB
testcase_23 AC 132 ms
54,212 KB
testcase_24 AC 616 ms
65,732 KB
testcase_25 AC 588 ms
59,204 KB
testcase_26 AC 307 ms
58,668 KB
testcase_27 AC 132 ms
54,248 KB
evil01.txt AC 716 ms
70,100 KB
evil02.txt AC 727 ms
59,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i = 0 ; i < n ; i++) {
			a[i] = sc.nextInt();
		}
		Map<Integer, Integer> map = new HashMap<>();

		for(int i = 0 ; i < n ; i++) {
			map.put(a[i], 0);
		}

		for(int i = 0 ; i < n ; i++) {
			map.put(a[i], map.get(a[i]) + 1);
		}

		int ans = 0;
		for(int i = 0 ; i < n ; i++) {
			if(map.get(a[i]) == 1) {
				ans++;
			}
		}
		System.out.println(ans);
 	}
}

0