結果

問題 No.182 新規性の虜
ユーザー yomo3yomo3
提出日時 2020-05-07 23:48:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 645 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 80,772 KB
実行使用メモリ 66,516 KB
最終ジャッジ日時 2024-07-03 09:41:53
合計ジャッジ時間 8,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,820 KB
testcase_01 AC 62 ms
50,452 KB
testcase_02 AC 63 ms
50,988 KB
testcase_03 AC 64 ms
50,844 KB
testcase_04 AC 64 ms
50,784 KB
testcase_05 AC 64 ms
50,960 KB
testcase_06 AC 63 ms
50,748 KB
testcase_07 AC 63 ms
50,884 KB
testcase_08 AC 245 ms
60,680 KB
testcase_09 AC 308 ms
63,232 KB
testcase_10 AC 280 ms
62,644 KB
testcase_11 AC 267 ms
60,784 KB
testcase_12 AC 188 ms
57,468 KB
testcase_13 AC 63 ms
50,780 KB
testcase_14 AC 63 ms
50,868 KB
testcase_15 AC 62 ms
51,136 KB
testcase_16 AC 64 ms
50,784 KB
testcase_17 AC 64 ms
50,908 KB
testcase_18 AC 214 ms
60,756 KB
testcase_19 AC 203 ms
58,448 KB
testcase_20 AC 168 ms
58,460 KB
testcase_21 AC 227 ms
60,732 KB
testcase_22 AC 177 ms
57,416 KB
testcase_23 AC 63 ms
50,536 KB
testcase_24 AC 290 ms
66,516 KB
testcase_25 AC 200 ms
60,952 KB
testcase_26 AC 137 ms
54,448 KB
testcase_27 AC 64 ms
50,872 KB
evil01.txt AC 323 ms
66,476 KB
evil02.txt AC 310 ms
66,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.InputStreamReader;
import java.io.BufferedReader;


public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(br.readLine());
        String[] sa = br.readLine().split(" ");
        Map<Integer, Integer> m = new HashMap<>();
        for (int i = 0; i < N; i++) {
            int A = Integer.parseInt(sa[i]);
            m.merge(A, 1, Integer::sum);
        }
        long ans = m.values().stream().filter(e -> e == 1).count();
        System.out.println(ans);
    }    
}
0