結果

問題 No.182 新規性の虜
ユーザー samplelpmassamplelpmas
提出日時 2016-11-16 02:09:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 598 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-06-08 09:26:31
合計ジャッジ時間 11,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,092 KB
testcase_01 AC 109 ms
40,700 KB
testcase_02 AC 96 ms
39,648 KB
testcase_03 AC 110 ms
41,136 KB
testcase_04 AC 111 ms
40,992 KB
testcase_05 AC 112 ms
41,016 KB
testcase_06 AC 110 ms
40,944 KB
testcase_07 AC 102 ms
39,976 KB
testcase_08 AC 550 ms
51,440 KB
testcase_09 AC 598 ms
53,048 KB
testcase_10 AC 554 ms
52,488 KB
testcase_11 AC 544 ms
51,892 KB
testcase_12 AC 385 ms
49,204 KB
testcase_13 AC 100 ms
39,900 KB
testcase_14 AC 97 ms
40,048 KB
testcase_15 AC 100 ms
39,932 KB
testcase_16 AC 109 ms
41,148 KB
testcase_17 AC 113 ms
41,056 KB
testcase_18 AC 486 ms
48,616 KB
testcase_19 AC 420 ms
48,356 KB
testcase_20 AC 375 ms
48,632 KB
testcase_21 AC 519 ms
48,720 KB
testcase_22 AC 403 ms
48,564 KB
testcase_23 AC 115 ms
40,968 KB
testcase_24 AC 504 ms
54,572 KB
testcase_25 AC 409 ms
46,468 KB
testcase_26 AC 254 ms
47,908 KB
testcase_27 AC 106 ms
40,820 KB
evil01.txt AC 549 ms
57,216 KB
evil02.txt AC 576 ms
54,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();

        for (int i = 0; i < n; i++) {

            int a = sc.nextInt();

            if (map.containsKey(a)) {
                map.put(a, (map.get(a) + 1));
            } else {
                map.put(a, 1);
            }

        }

        int count = 0;

        for (int key : map.keySet()) {

            if (map.get(key) == 1) {
                count++;
            }

        }

        System.out.println(count);

    }

}
0