結果

問題 No.182 新規性の虜
ユーザー dazydazy
提出日時 2017-02-23 14:34:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 598 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-06-08 11:05:09
合計ジャッジ時間 12,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,256 KB
testcase_01 AC 103 ms
41,188 KB
testcase_02 AC 94 ms
40,160 KB
testcase_03 AC 105 ms
40,816 KB
testcase_04 AC 104 ms
41,136 KB
testcase_05 AC 110 ms
41,320 KB
testcase_06 AC 112 ms
40,924 KB
testcase_07 AC 101 ms
40,224 KB
testcase_08 AC 457 ms
51,256 KB
testcase_09 AC 598 ms
52,952 KB
testcase_10 AC 595 ms
52,488 KB
testcase_11 AC 475 ms
50,444 KB
testcase_12 AC 391 ms
49,380 KB
testcase_13 AC 108 ms
40,856 KB
testcase_14 AC 105 ms
40,080 KB
testcase_15 AC 108 ms
41,160 KB
testcase_16 AC 107 ms
40,988 KB
testcase_17 AC 109 ms
40,868 KB
testcase_18 AC 486 ms
48,640 KB
testcase_19 AC 420 ms
48,676 KB
testcase_20 AC 308 ms
46,844 KB
testcase_21 AC 451 ms
48,428 KB
testcase_22 AC 372 ms
48,548 KB
testcase_23 AC 102 ms
40,920 KB
testcase_24 AC 494 ms
53,572 KB
testcase_25 AC 485 ms
46,948 KB
testcase_26 AC 250 ms
47,508 KB
testcase_27 AC 103 ms
40,124 KB
evil01.txt AC 552 ms
54,604 KB
evil02.txt AC 552 ms
52,996 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