結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tentententen
提出日時 2022-10-13 10:32:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 297 ms / 5,000 ms
コード長 1,334 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 39,816 KB
最終ジャッジ日時 2024-06-26 11:54:16
合計ジャッジ時間 6,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,036 KB
testcase_01 AC 57 ms
37,040 KB
testcase_02 AC 60 ms
37,208 KB
testcase_03 AC 62 ms
37,204 KB
testcase_04 AC 55 ms
36,992 KB
testcase_05 AC 61 ms
37,244 KB
testcase_06 AC 56 ms
36,804 KB
testcase_07 AC 279 ms
39,752 KB
testcase_08 AC 276 ms
39,816 KB
testcase_09 AC 217 ms
39,372 KB
testcase_10 AC 244 ms
39,500 KB
testcase_11 AC 290 ms
39,676 KB
testcase_12 AC 61 ms
36,860 KB
testcase_13 AC 52 ms
37,272 KB
testcase_14 AC 281 ms
39,392 KB
testcase_15 AC 297 ms
39,492 KB
testcase_16 AC 61 ms
36,744 KB
testcase_17 AC 135 ms
39,288 KB
testcase_18 AC 268 ms
39,796 KB
testcase_19 AC 114 ms
39,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        boolean[] dp = new boolean[1 << 15];
        dp[0] = true;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = 0; j < dp.length; j++) {
                dp[j ^ x] |= dp[j];
            }
        }
        int ans = 0;
        for (boolean x : dp) {
            if (x) {
                ans++;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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