結果

問題 No.2672 Subset Xor Sum
ユーザー ks2mks2m
提出日時 2024-03-15 21:55:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 90,960 KB
最終ジャッジ日時 2024-09-30 01:00:56
合計ジャッジ時間 10,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,248 KB
testcase_01 AC 47 ms
50,176 KB
testcase_02 AC 48 ms
49,832 KB
testcase_03 AC 48 ms
50,144 KB
testcase_04 AC 49 ms
50,028 KB
testcase_05 AC 47 ms
50,084 KB
testcase_06 AC 48 ms
50,148 KB
testcase_07 AC 48 ms
49,996 KB
testcase_08 AC 50 ms
50,204 KB
testcase_09 AC 52 ms
49,936 KB
testcase_10 AC 49 ms
49,788 KB
testcase_11 AC 49 ms
50,204 KB
testcase_12 AC 48 ms
50,172 KB
testcase_13 AC 47 ms
50,212 KB
testcase_14 AC 49 ms
50,060 KB
testcase_15 AC 48 ms
50,180 KB
testcase_16 AC 48 ms
50,120 KB
testcase_17 AC 49 ms
49,988 KB
testcase_18 AC 47 ms
49,884 KB
testcase_19 AC 49 ms
49,788 KB
testcase_20 AC 48 ms
50,264 KB
testcase_21 AC 47 ms
50,084 KB
testcase_22 AC 47 ms
49,952 KB
testcase_23 AC 47 ms
49,964 KB
testcase_24 AC 50 ms
50,152 KB
testcase_25 AC 49 ms
49,688 KB
testcase_26 AC 48 ms
50,128 KB
testcase_27 AC 48 ms
49,716 KB
testcase_28 AC 52 ms
50,048 KB
testcase_29 AC 51 ms
49,896 KB
testcase_30 AC 49 ms
49,776 KB
testcase_31 AC 340 ms
90,684 KB
testcase_32 AC 267 ms
66,080 KB
testcase_33 AC 213 ms
62,544 KB
testcase_34 AC 318 ms
77,316 KB
testcase_35 AC 344 ms
90,620 KB
testcase_36 AC 331 ms
78,348 KB
testcase_37 AC 328 ms
86,380 KB
testcase_38 AC 260 ms
65,952 KB
testcase_39 AC 338 ms
90,504 KB
testcase_40 AC 158 ms
57,820 KB
testcase_41 AC 264 ms
70,808 KB
testcase_42 AC 331 ms
90,960 KB
testcase_43 AC 313 ms
77,612 KB
testcase_44 AC 324 ms
90,612 KB
testcase_45 AC 302 ms
76,636 KB
testcase_46 AC 78 ms
51,216 KB
testcase_47 AC 80 ms
51,340 KB
testcase_48 AC 80 ms
51,404 KB
testcase_49 AC 75 ms
51,380 KB
testcase_50 AC 82 ms
50,988 KB
testcase_51 AC 70 ms
51,476 KB
testcase_52 AC 78 ms
51,328 KB
testcase_53 AC 76 ms
51,268 KB
testcase_54 AC 82 ms
51,428 KB
testcase_55 AC 78 ms
51,288 KB
testcase_56 AC 71 ms
51,136 KB
testcase_57 AC 76 ms
50,948 KB
testcase_58 AC 53 ms
50,140 KB
testcase_59 AC 51 ms
50,060 KB
testcase_60 AC 61 ms
50,576 KB
testcase_61 AC 53 ms
50,084 KB
testcase_62 AC 55 ms
50,772 KB
testcase_63 AC 60 ms
50,864 KB
testcase_64 AC 74 ms
51,092 KB
testcase_65 AC 54 ms
49,828 KB
testcase_66 WA -
testcase_67 AC 46 ms
50,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int m = 5000;
		int[] c = new int[m + 1];
		int xor = 0;
		for (int i = 0; i < n; i++) {
			xor ^= a[i];
			c[a[i]]++;
		}
		if (xor != 0) {
			System.out.println("No");
			return;
		}

		for (int i = 0; i < c.length; i++) {
			if (c[i] >= 2) {
				System.out.println("Yes");
				return;
			}
		}

		boolean[] dp = new boolean[8200];
		dp[0] = true;
		for (int i = 0; i < n; i++) {
			boolean[] wk = Arrays.copyOf(dp, dp.length);
			wk[0] = false;
			for (int j = 0; j <= m; j++) {
				if (dp[j]) {
					wk[j ^ a[i]] = true;
				}
			}
			if (i < n - 1 && wk[0]) {
				System.out.println("Yes");
				return;
			}
			dp = wk;
		}
		System.out.println("No");
	}
}
0