結果

問題 No.182 新規性の虜
ユーザー tentententen
提出日時 2020-10-09 13:08:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 745 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 84,452 KB
実行使用メモリ 62,820 KB
最終ジャッジ日時 2024-07-20 06:45:04
合計ジャッジ時間 15,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,308 KB
testcase_01 AC 135 ms
53,960 KB
testcase_02 AC 134 ms
53,828 KB
testcase_03 AC 138 ms
53,876 KB
testcase_04 AC 141 ms
54,044 KB
testcase_05 AC 139 ms
53,872 KB
testcase_06 AC 137 ms
53,668 KB
testcase_07 AC 140 ms
54,044 KB
testcase_08 AC 597 ms
61,812 KB
testcase_09 AC 745 ms
62,624 KB
testcase_10 AC 732 ms
62,820 KB
testcase_11 AC 677 ms
61,708 KB
testcase_12 AC 450 ms
59,408 KB
testcase_13 AC 140 ms
41,052 KB
testcase_14 AC 136 ms
41,312 KB
testcase_15 AC 133 ms
41,056 KB
testcase_16 AC 121 ms
39,896 KB
testcase_17 AC 137 ms
41,484 KB
testcase_18 AC 577 ms
48,568 KB
testcase_19 AC 532 ms
48,568 KB
testcase_20 AC 404 ms
46,824 KB
testcase_21 AC 606 ms
48,764 KB
testcase_22 AC 450 ms
48,656 KB
testcase_23 AC 136 ms
41,376 KB
testcase_24 AC 615 ms
53,620 KB
testcase_25 AC 590 ms
47,772 KB
testcase_26 AC 302 ms
47,688 KB
testcase_27 AC 138 ms
41,192 KB
evil01.txt AC 704 ms
54,924 KB
evil02.txt AC 758 ms
54,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (map.containsKey(x)) {
                map.put(x, map.get(x) + 1);
            } else {
                map.put(x, 1);
            }
        }
        int count = 0;
        for (int x : map.values()) {
            if (x == 1) {
                count++;
            }
        }
        System.out.println(count);
    }
}
0