結果

問題 No.2672 Subset Xor Sum
ユーザー ks2mks2m
提出日時 2024-03-15 21:58:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,103 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 78,408 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-09-30 01:07:09
合計ジャッジ時間 11,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,328 KB
testcase_01 AC 47 ms
50,288 KB
testcase_02 AC 48 ms
50,024 KB
testcase_03 AC 48 ms
50,356 KB
testcase_04 AC 49 ms
50,316 KB
testcase_05 AC 50 ms
50,064 KB
testcase_06 AC 52 ms
50,348 KB
testcase_07 AC 50 ms
50,048 KB
testcase_08 AC 49 ms
50,400 KB
testcase_09 AC 48 ms
50,340 KB
testcase_10 AC 48 ms
50,292 KB
testcase_11 AC 49 ms
50,388 KB
testcase_12 AC 50 ms
50,116 KB
testcase_13 AC 50 ms
50,340 KB
testcase_14 AC 50 ms
50,360 KB
testcase_15 AC 49 ms
50,348 KB
testcase_16 AC 49 ms
50,412 KB
testcase_17 AC 48 ms
50,396 KB
testcase_18 AC 50 ms
50,080 KB
testcase_19 AC 48 ms
50,328 KB
testcase_20 AC 49 ms
50,296 KB
testcase_21 AC 49 ms
50,348 KB
testcase_22 AC 47 ms
50,168 KB
testcase_23 AC 48 ms
50,348 KB
testcase_24 AC 49 ms
50,068 KB
testcase_25 AC 48 ms
50,272 KB
testcase_26 AC 48 ms
50,044 KB
testcase_27 AC 53 ms
49,944 KB
testcase_28 AC 50 ms
50,280 KB
testcase_29 AC 51 ms
50,284 KB
testcase_30 AC 50 ms
50,284 KB
testcase_31 AC 337 ms
90,784 KB
testcase_32 AC 240 ms
65,024 KB
testcase_33 AC 192 ms
62,624 KB
testcase_34 AC 300 ms
77,252 KB
testcase_35 AC 323 ms
90,676 KB
testcase_36 AC 321 ms
78,612 KB
testcase_37 AC 318 ms
86,468 KB
testcase_38 AC 247 ms
65,972 KB
testcase_39 AC 321 ms
90,684 KB
testcase_40 AC 164 ms
58,116 KB
testcase_41 AC 268 ms
71,128 KB
testcase_42 AC 325 ms
90,872 KB
testcase_43 AC 306 ms
77,664 KB
testcase_44 AC 319 ms
90,880 KB
testcase_45 AC 300 ms
77,104 KB
testcase_46 AC 78 ms
51,756 KB
testcase_47 AC 83 ms
51,092 KB
testcase_48 AC 77 ms
51,388 KB
testcase_49 AC 74 ms
51,656 KB
testcase_50 AC 84 ms
51,556 KB
testcase_51 AC 83 ms
51,704 KB
testcase_52 AC 79 ms
51,740 KB
testcase_53 AC 75 ms
51,312 KB
testcase_54 AC 83 ms
51,784 KB
testcase_55 AC 93 ms
51,900 KB
testcase_56 AC 85 ms
51,456 KB
testcase_57 AC 73 ms
51,256 KB
testcase_58 AC 52 ms
50,480 KB
testcase_59 AC 50 ms
50,260 KB
testcase_60 AC 58 ms
50,724 KB
testcase_61 AC 54 ms
50,076 KB
testcase_62 AC 56 ms
50,464 KB
testcase_63 AC 58 ms
50,976 KB
testcase_64 AC 63 ms
51,456 KB
testcase_65 AC 52 ms
50,352 KB
testcase_66 WA -
testcase_67 AC 46 ms
50,420 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 - 1; i++) {
			boolean[] wk = Arrays.copyOf(dp, dp.length);
			wk[0] = false;
			for (int j = 0; j < dp.length; j++) {
				if (dp[j]) {
					wk[j ^ a[i]] = true;
				}
			}
			if (wk[0]) {
				System.out.println("Yes");
				return;
			}
			dp = wk;
		}
		System.out.println("No");
	}
}
0