結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー htensaihtensai
提出日時 2019-12-30 10:24:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 661 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 47,576 KB
最終ジャッジ日時 2024-07-02 21:29:51
合計ジャッジ時間 10,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,084 KB
testcase_01 AC 145 ms
41,076 KB
testcase_02 AC 148 ms
41,504 KB
testcase_03 AC 146 ms
41,148 KB
testcase_04 AC 144 ms
41,256 KB
testcase_05 AC 148 ms
41,404 KB
testcase_06 AC 143 ms
41,104 KB
testcase_07 AC 661 ms
47,360 KB
testcase_08 AC 604 ms
47,304 KB
testcase_09 AC 503 ms
46,164 KB
testcase_10 AC 534 ms
46,392 KB
testcase_11 AC 616 ms
47,576 KB
testcase_12 AC 147 ms
41,312 KB
testcase_13 AC 122 ms
40,252 KB
testcase_14 AC 539 ms
47,208 KB
testcase_15 AC 651 ms
47,244 KB
testcase_16 AC 140 ms
41,296 KB
testcase_17 AC 310 ms
43,156 KB
testcase_18 AC 619 ms
47,176 KB
testcase_19 AC 259 ms
42,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int count = (int)(Math.pow(2, 15));
        boolean[] dp = new boolean[count];
        dp[0] = true;
        for (int i = 0; i < n; i++) {
            int a = sc.nextInt();
            for (int j = 0; j < count; j++) {
                if (dp[j]) {
                    dp[j ^ a] = true;
                }
            }
        }
        int ans = 0;
        for (int i = 0; i < count; i++) {
            if (dp[i]) {
                ans++;
            }
        }
        System.out.println(ans);
    }
}
0