結果

問題 No.182 新規性の虜
ユーザー yomo3yomo3
提出日時 2020-05-07 22:25:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 759 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 80,156 KB
実行使用メモリ 64,972 KB
最終ジャッジ日時 2024-07-03 09:39:40
合計ジャッジ時間 14,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,988 KB
testcase_01 AC 140 ms
54,276 KB
testcase_02 AC 140 ms
54,060 KB
testcase_03 AC 143 ms
54,240 KB
testcase_04 AC 138 ms
53,604 KB
testcase_05 AC 142 ms
54,144 KB
testcase_06 AC 138 ms
54,176 KB
testcase_07 AC 143 ms
53,852 KB
testcase_08 AC 614 ms
61,720 KB
testcase_09 AC 759 ms
63,752 KB
testcase_10 AC 722 ms
63,784 KB
testcase_11 AC 671 ms
61,920 KB
testcase_12 AC 482 ms
59,280 KB
testcase_13 AC 141 ms
54,144 KB
testcase_14 AC 148 ms
53,848 KB
testcase_15 AC 144 ms
54,100 KB
testcase_16 AC 146 ms
54,200 KB
testcase_17 AC 147 ms
54,016 KB
testcase_18 AC 594 ms
59,496 KB
testcase_19 AC 557 ms
59,356 KB
testcase_20 AC 479 ms
59,276 KB
testcase_21 AC 640 ms
59,648 KB
testcase_22 AC 513 ms
59,188 KB
testcase_23 AC 143 ms
54,324 KB
testcase_24 AC 629 ms
64,972 KB
testcase_25 AC 568 ms
59,492 KB
testcase_26 AC 327 ms
58,732 KB
testcase_27 AC 140 ms
54,124 KB
evil01.txt AC 694 ms
67,360 KB
evil02.txt AC 706 ms
65,796 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 = sc.nextInt();
            m.merge(A, 1, Integer::sum);
        }
        long ans = m.values().stream().filter(e -> e == 1).count();
        System.out.println(ans);
    }    
}
0