結果

問題 No.182 新規性の虜
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 10:51:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 401 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 55,356 KB
最終ジャッジ日時 2024-12-27 15:23:01
合計ジャッジ時間 10,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
36,900 KB
testcase_01 AC 67 ms
36,308 KB
testcase_02 AC 73 ms
36,732 KB
testcase_03 AC 66 ms
36,444 KB
testcase_04 AC 65 ms
36,568 KB
testcase_05 AC 69 ms
36,888 KB
testcase_06 AC 64 ms
36,636 KB
testcase_07 AC 65 ms
36,884 KB
testcase_08 AC 324 ms
50,520 KB
testcase_09 AC 390 ms
54,028 KB
testcase_10 AC 401 ms
53,536 KB
testcase_11 AC 350 ms
50,544 KB
testcase_12 AC 225 ms
44,784 KB
testcase_13 AC 72 ms
36,548 KB
testcase_14 AC 71 ms
36,652 KB
testcase_15 AC 67 ms
36,408 KB
testcase_16 AC 68 ms
36,448 KB
testcase_17 AC 67 ms
36,736 KB
testcase_18 AC 293 ms
48,524 KB
testcase_19 AC 262 ms
47,676 KB
testcase_20 AC 216 ms
44,972 KB
testcase_21 AC 298 ms
48,968 KB
testcase_22 AC 232 ms
46,096 KB
testcase_23 AC 64 ms
36,648 KB
testcase_24 AC 346 ms
55,356 KB
testcase_25 AC 233 ms
46,420 KB
testcase_26 AC 164 ms
40,956 KB
testcase_27 AC 62 ms
36,340 KB
evil01.txt AC 419 ms
58,508 KB
evil02.txt AC 433 ms
58,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        Set<Long> newElements = new HashSet<>();
        Set<Long> duplicateElements= new HashSet<>();


        for (int i = 0; i < N; i++) {
            long a = Long.parseLong(inputs[i]);
            if(duplicateElements.contains(a)) {

            } else if (newElements.contains(a)) {
                newElements.remove(a);
                duplicateElements.add(a);
            } else {
                newElements.add(a);
            }
        }
        System.out.println(newElements.size());
    }
}
0