結果

問題 No.182 新規性の虜
ユーザー dazydazy
提出日時 2017-02-23 14:34:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 754 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 6,009 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 53,548 KB
最終ジャッジ日時 2024-12-27 15:39:55
合計ジャッジ時間 16,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,100 KB
testcase_01 AC 130 ms
41,468 KB
testcase_02 AC 130 ms
41,080 KB
testcase_03 AC 138 ms
41,264 KB
testcase_04 AC 135 ms
41,000 KB
testcase_05 AC 137 ms
40,440 KB
testcase_06 AC 140 ms
41,152 KB
testcase_07 AC 141 ms
41,236 KB
testcase_08 AC 623 ms
51,308 KB
testcase_09 AC 754 ms
52,868 KB
testcase_10 AC 680 ms
52,516 KB
testcase_11 AC 656 ms
51,724 KB
testcase_12 AC 458 ms
49,736 KB
testcase_13 AC 122 ms
40,280 KB
testcase_14 AC 140 ms
41,352 KB
testcase_15 AC 122 ms
40,524 KB
testcase_16 AC 136 ms
41,304 KB
testcase_17 AC 146 ms
41,368 KB
testcase_18 AC 593 ms
48,560 KB
testcase_19 AC 505 ms
48,776 KB
testcase_20 AC 433 ms
48,496 KB
testcase_21 AC 589 ms
48,788 KB
testcase_22 AC 484 ms
48,636 KB
testcase_23 AC 134 ms
41,148 KB
testcase_24 AC 598 ms
53,548 KB
testcase_25 AC 573 ms
47,984 KB
testcase_26 AC 318 ms
47,872 KB
testcase_27 AC 137 ms
41,040 KB
evil01.txt AC 656 ms
54,088 KB
evil02.txt AC 688 ms
54,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int ans = N;
        int A;
        HashMap<Integer, Integer> M = new HashMap<>();
        for (int i = 0; i < N; i++) {
            A = scan.nextInt();
            if (!M.containsKey(A)) M.put(A, 1);
            else {
                if (M.get(A)==1) {
                    ans-=2;
                    M.put(A, 2);
                }
                else ans--;
            }
        }
        System.out.println(ans);
    }
}
0