結果

問題 No.182 新規性の虜
ユーザー samplelpmassamplelpmas
提出日時 2016-11-16 02:09:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 759 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 3,000 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-12-27 11:06:29
合計ジャッジ時間 16,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,804 KB
testcase_01 AC 137 ms
40,872 KB
testcase_02 AC 137 ms
41,136 KB
testcase_03 AC 156 ms
40,876 KB
testcase_04 AC 152 ms
41,172 KB
testcase_05 AC 150 ms
41,212 KB
testcase_06 AC 140 ms
41,004 KB
testcase_07 AC 139 ms
40,992 KB
testcase_08 AC 632 ms
51,080 KB
testcase_09 AC 756 ms
52,872 KB
testcase_10 AC 759 ms
52,012 KB
testcase_11 AC 715 ms
51,848 KB
testcase_12 AC 500 ms
48,940 KB
testcase_13 AC 141 ms
41,068 KB
testcase_14 AC 130 ms
40,156 KB
testcase_15 AC 139 ms
41,120 KB
testcase_16 AC 148 ms
41,060 KB
testcase_17 AC 150 ms
41,004 KB
testcase_18 AC 686 ms
48,088 KB
testcase_19 AC 540 ms
48,428 KB
testcase_20 AC 412 ms
46,768 KB
testcase_21 AC 676 ms
48,640 KB
testcase_22 AC 511 ms
48,256 KB
testcase_23 AC 144 ms
40,932 KB
testcase_24 AC 712 ms
54,280 KB
testcase_25 AC 733 ms
47,684 KB
testcase_26 AC 416 ms
47,716 KB
testcase_27 AC 145 ms
41,140 KB
evil01.txt AC 760 ms
54,612 KB
evil02.txt AC 763 ms
55,756 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