結果

問題 No.182 新規性の虜
ユーザー crazybbb3crazybbb3
提出日時 2017-02-04 13:00:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 1,877 bytes
コンパイル時間 2,791 ms
コンパイル使用メモリ 90,644 KB
実行使用メモリ 50,148 KB
最終ジャッジ日時 2024-06-08 09:56:14
合計ジャッジ時間 8,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
37,412 KB
testcase_01 AC 61 ms
37,720 KB
testcase_02 AC 59 ms
37,548 KB
testcase_03 AC 59 ms
37,588 KB
testcase_04 AC 59 ms
37,164 KB
testcase_05 AC 59 ms
37,540 KB
testcase_06 AC 57 ms
37,688 KB
testcase_07 AC 59 ms
37,356 KB
testcase_08 AC 248 ms
47,920 KB
testcase_09 AC 267 ms
50,148 KB
testcase_10 AC 259 ms
49,500 KB
testcase_11 AC 252 ms
47,860 KB
testcase_12 AC 186 ms
46,124 KB
testcase_13 AC 59 ms
37,292 KB
testcase_14 AC 61 ms
37,440 KB
testcase_15 AC 58 ms
37,460 KB
testcase_16 AC 58 ms
37,572 KB
testcase_17 AC 56 ms
37,312 KB
testcase_18 AC 212 ms
45,380 KB
testcase_19 AC 201 ms
45,536 KB
testcase_20 AC 162 ms
42,600 KB
testcase_21 AC 218 ms
45,516 KB
testcase_22 AC 182 ms
45,116 KB
testcase_23 AC 60 ms
37,520 KB
testcase_24 AC 249 ms
50,012 KB
testcase_25 AC 208 ms
44,892 KB
testcase_26 AC 136 ms
40,844 KB
testcase_27 AC 59 ms
37,568 KB
evil01.txt AC 305 ms
51,404 KB
evil02.txt AC 292 ms
51,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        int n = ni();
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int a = ni();
            map.merge(a, 1, (x, y) -> x + y);
        }
        out.println(map.values().stream().filter(cnt -> cnt == 1).count());
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0