結果

問題 No.182 新規性の虜
ユーザー tsunabittsunabit
提出日時 2018-05-09 18:34:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 511 ms / 5,000 ms
コード長 1,840 bytes
コンパイル時間 3,957 ms
コンパイル使用メモリ 87,360 KB
実行使用メモリ 58,268 KB
最終ジャッジ日時 2024-06-28 02:50:16
合計ジャッジ時間 13,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,540 KB
testcase_01 AC 133 ms
41,572 KB
testcase_02 AC 135 ms
41,640 KB
testcase_03 AC 135 ms
41,176 KB
testcase_04 AC 135 ms
41,172 KB
testcase_05 AC 138 ms
41,480 KB
testcase_06 AC 138 ms
41,192 KB
testcase_07 AC 137 ms
41,068 KB
testcase_08 AC 421 ms
53,052 KB
testcase_09 AC 511 ms
57,380 KB
testcase_10 AC 506 ms
58,268 KB
testcase_11 AC 490 ms
55,904 KB
testcase_12 AC 333 ms
47,704 KB
testcase_13 AC 135 ms
41,448 KB
testcase_14 AC 134 ms
41,404 KB
testcase_15 AC 135 ms
41,272 KB
testcase_16 AC 137 ms
41,284 KB
testcase_17 AC 136 ms
41,344 KB
testcase_18 AC 390 ms
53,448 KB
testcase_19 AC 355 ms
48,824 KB
testcase_20 AC 307 ms
47,756 KB
testcase_21 AC 394 ms
54,160 KB
testcase_22 AC 328 ms
47,884 KB
testcase_23 AC 135 ms
41,464 KB
testcase_24 AC 484 ms
57,384 KB
testcase_25 AC 355 ms
51,668 KB
testcase_26 AC 256 ms
45,044 KB
testcase_27 AC 136 ms
41,320 KB
evil01.txt AC 522 ms
61,688 KB
evil02.txt AC 516 ms
61,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.Stream;
import java.util.Arrays;
import java.util.HashMap;

// ***問題文***
// kamipeipaa君は新しいものが大好きです。
// kamipeipaa君はある日N個の整数A1,A2,A3,....,ANを見つけました。
// 整数Aiに対して,Ai=Ajとなるjがi以外に存在しなければ,Aiは新規性があるのではないかとkamipeipaa君は考えました。
// 上記の条件を満たす整数がいくつあるかkamipeipaa君に教えてあげてください。
// ***入力***
// N
// A1 A2 ... AN
// 1行目にkamipeipaa君が見つけた数の総数N(1≤N≤105)
// が与えられる。
// 2行目にkamipeipaa君が見つけた数A1,A2,....,AN(1≤Ai≤109)が空白区切りで与えられる。
// ***出力***
// 条件を満たすようなものの数を1行に出力せよ。改行を忘れないこと。

public class No182 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.nextLine());
        // int[] a = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        int[] a = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        HashMap<Integer, Integer> ha = new HashMap<Integer, Integer>();
        for(int i = 0; i < a.length; i++) {
            if(ha.containsKey(a[i])) {
                ha.put(a[i], ha.get(a[i]) + 1);
            }else {
                ha.put(a[i], 1);
            }
        }
        int count = 0;
        for(int k: ha.keySet()) {
            // System.out.println(ha.get(k));
            if(ha.get(k) == 1) {
                count++;
            }
        }
        System.out.println(count);
    }
}
0