結果

問題 No.182 新規性の虜
ユーザー yomo3yomo3
提出日時 2020-05-07 22:27:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 689 ms / 5,000 ms
コード長 499 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 94,208 KB
実行使用メモリ 64,356 KB
最終ジャッジ日時 2024-07-03 09:37:42
合計ジャッジ時間 14,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,084 KB
testcase_01 AC 140 ms
54,412 KB
testcase_02 AC 138 ms
54,208 KB
testcase_03 AC 140 ms
54,220 KB
testcase_04 AC 140 ms
54,428 KB
testcase_05 AC 144 ms
54,032 KB
testcase_06 AC 142 ms
54,284 KB
testcase_07 AC 143 ms
54,140 KB
testcase_08 AC 527 ms
61,900 KB
testcase_09 AC 689 ms
64,356 KB
testcase_10 AC 622 ms
63,992 KB
testcase_11 AC 596 ms
62,148 KB
testcase_12 AC 353 ms
59,360 KB
testcase_13 AC 138 ms
54,116 KB
testcase_14 AC 139 ms
54,024 KB
testcase_15 AC 137 ms
53,848 KB
testcase_16 AC 142 ms
54,268 KB
testcase_17 AC 141 ms
53,728 KB
testcase_18 AC 464 ms
59,792 KB
testcase_19 AC 454 ms
59,504 KB
testcase_20 AC 342 ms
59,488 KB
testcase_21 AC 498 ms
59,440 KB
testcase_22 AC 397 ms
59,364 KB
testcase_23 AC 139 ms
53,832 KB
testcase_24 AC 500 ms
63,500 KB
testcase_25 AC 505 ms
59,588 KB
testcase_26 AC 261 ms
58,964 KB
testcase_27 AC 140 ms
54,364 KB
evil01.txt AC 650 ms
64,148 KB
evil02.txt AC 676 ms
64,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        Map<Integer, Integer> m = new HashMap<>();
        for (int i = 0; i < N; i++) {
            int A = Integer.parseInt(sc.next());
            // int A = sc.nextInt();
            m.merge(A, 1, Integer::sum);
        }
        long ans = m.values().stream().filter(e -> e == 1).count();
        System.out.println(ans);
    }    
}
0