結果

問題 No.182 新規性の虜
ユーザー jimanojimano
提出日時 2018-01-15 23:34:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 673 ms / 5,000 ms
コード長 524 bytes
コンパイル時間 3,173 ms
コンパイル使用メモリ 86,340 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-06-08 12:53:42
合計ジャッジ時間 13,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,092 KB
testcase_01 AC 110 ms
39,980 KB
testcase_02 AC 116 ms
41,076 KB
testcase_03 AC 109 ms
40,104 KB
testcase_04 AC 120 ms
41,024 KB
testcase_05 AC 126 ms
40,184 KB
testcase_06 AC 125 ms
41,332 KB
testcase_07 AC 118 ms
40,084 KB
testcase_08 AC 515 ms
50,624 KB
testcase_09 AC 673 ms
53,140 KB
testcase_10 AC 559 ms
52,348 KB
testcase_11 AC 577 ms
51,844 KB
testcase_12 AC 386 ms
49,084 KB
testcase_13 AC 114 ms
41,188 KB
testcase_14 AC 109 ms
40,264 KB
testcase_15 AC 112 ms
40,092 KB
testcase_16 AC 114 ms
41,328 KB
testcase_17 AC 114 ms
40,116 KB
testcase_18 AC 525 ms
48,620 KB
testcase_19 AC 431 ms
48,360 KB
testcase_20 AC 369 ms
48,492 KB
testcase_21 AC 508 ms
48,364 KB
testcase_22 AC 394 ms
48,224 KB
testcase_23 AC 112 ms
40,316 KB
testcase_24 AC 531 ms
54,000 KB
testcase_25 AC 548 ms
48,156 KB
testcase_26 AC 270 ms
47,628 KB
testcase_27 AC 126 ms
41,368 KB
evil01.txt AC 566 ms
57,796 KB
evil02.txt AC 587 ms
57,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

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

public class No0182 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt();
			Map<Integer, Integer> map = new HashMap<>();

			for (int i = 0; i < N; i++) {
				int tmp = sc.nextInt();
				map.computeIfPresent(tmp, (k, v) -> (map.get(tmp) + 1));
				map.putIfAbsent(tmp, 1);
			}
			System.out.println(map.values().stream().filter(i -> i == 1).count());
		}
	}
}
0