結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tentententen
提出日時 2022-07-29 10:14:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,031 ms / 5,000 ms
コード長 1,402 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 78,364 KB
実行使用メモリ 49,716 KB
最終ジャッジ日時 2024-07-19 01:50:23
合計ジャッジ時間 14,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,912 KB
testcase_01 AC 49 ms
36,844 KB
testcase_02 AC 72 ms
38,968 KB
testcase_03 AC 54 ms
37,220 KB
testcase_04 AC 49 ms
37,008 KB
testcase_05 AC 90 ms
40,384 KB
testcase_06 AC 50 ms
36,680 KB
testcase_07 AC 2,031 ms
48,960 KB
testcase_08 AC 1,184 ms
45,352 KB
testcase_09 AC 836 ms
45,204 KB
testcase_10 AC 991 ms
45,152 KB
testcase_11 AC 1,269 ms
45,280 KB
testcase_12 AC 112 ms
43,976 KB
testcase_13 AC 49 ms
36,744 KB
testcase_14 AC 104 ms
39,588 KB
testcase_15 AC 1,410 ms
45,404 KB
testcase_16 AC 55 ms
36,672 KB
testcase_17 AC 393 ms
45,264 KB
testcase_18 AC 1,784 ms
49,716 KB
testcase_19 AC 273 ms
45,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static HashSet<String> strings = new HashSet<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        HashSet<Integer> current = new HashSet<>();
        current.add(0);
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            HashSet<Integer> next = new HashSet<>();
            for (int y : current) {
                int z = x ^ y;
                if (!current.contains(z)) {
                    next.add(z);
                }
            }
            current.addAll(next);
        }
        System.out.println(current.size());
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0