結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー GrenacheGrenache
提出日時 2016-02-14 18:44:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,156 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 3,639 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 52,232 KB
最終ジャッジ日時 2024-06-29 12:54:41
合計ジャッジ時間 14,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,600 KB
testcase_01 AC 157 ms
41,340 KB
testcase_02 AC 150 ms
41,316 KB
testcase_03 AC 162 ms
41,280 KB
testcase_04 AC 157 ms
41,168 KB
testcase_05 AC 164 ms
41,236 KB
testcase_06 AC 158 ms
41,572 KB
testcase_07 AC 1,156 ms
47,572 KB
testcase_08 AC 1,054 ms
47,400 KB
testcase_09 AC 805 ms
46,436 KB
testcase_10 AC 930 ms
46,840 KB
testcase_11 AC 1,099 ms
47,648 KB
testcase_12 AC 165 ms
41,768 KB
testcase_13 AC 134 ms
41,272 KB
testcase_14 AC 904 ms
46,232 KB
testcase_15 AC 1,140 ms
47,844 KB
testcase_16 AC 161 ms
52,232 KB
testcase_17 AC 446 ms
44,520 KB
testcase_18 AC 991 ms
45,844 KB
testcase_19 AC 314 ms
42,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder183 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        boolean[][] dp = new boolean[2][16384 * 2 + 1];
        dp[0][0] = true;

        for (int i = 1; i <= n; i++) {
        	int a = sc.nextInt();

    		Arrays.fill(dp[i % 2], false);

        	for (int j = 0; j <= 16384 * 2; j++) {
        		if (dp[(i - 1) % 2][j]) {
            		dp[i % 2][j] = true;
        			dp[i % 2][j ^ a] = true;
        		}
        	}
        }

        int ret = 0;
        for (boolean f : dp[n % 2]) {
        	if (f) {
        		ret++;
        	}
        }

        System.out.println(ret);

        sc.close();
    }
}
0