結果

問題 No.2672 Subset Xor Sum
ユーザー ks2mks2m
提出日時 2024-03-15 21:53:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 78,400 KB
実行使用メモリ 90,620 KB
最終ジャッジ日時 2024-09-30 00:56:32
合計ジャッジ時間 12,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,056 KB
testcase_01 AC 54 ms
50,092 KB
testcase_02 RE -
testcase_03 AC 54 ms
50,308 KB
testcase_04 AC 56 ms
50,200 KB
testcase_05 AC 56 ms
50,284 KB
testcase_06 AC 56 ms
50,352 KB
testcase_07 AC 54 ms
50,196 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 55 ms
49,900 KB
testcase_25 AC 55 ms
49,876 KB
testcase_26 AC 54 ms
50,316 KB
testcase_27 AC 54 ms
50,204 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 56 ms
49,928 KB
testcase_31 AC 367 ms
90,620 KB
testcase_32 AC 303 ms
66,292 KB
testcase_33 AC 214 ms
62,612 KB
testcase_34 AC 347 ms
78,004 KB
testcase_35 AC 364 ms
89,180 KB
testcase_36 AC 350 ms
78,436 KB
testcase_37 AC 360 ms
86,412 KB
testcase_38 AC 280 ms
56,168 KB
testcase_39 AC 371 ms
80,452 KB
testcase_40 AC 182 ms
46,052 KB
testcase_41 AC 294 ms
70,792 KB
testcase_42 AC 369 ms
90,128 KB
testcase_43 AC 363 ms
77,524 KB
testcase_44 AC 375 ms
90,616 KB
testcase_45 AC 339 ms
67,432 KB
testcase_46 AC 85 ms
38,608 KB
testcase_47 RE -
testcase_48 AC 73 ms
38,480 KB
testcase_49 AC 90 ms
39,048 KB
testcase_50 AC 83 ms
38,384 KB
testcase_51 RE -
testcase_52 AC 83 ms
38,256 KB
testcase_53 AC 84 ms
38,760 KB
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 86 ms
38,840 KB
testcase_57 AC 70 ms
38,468 KB
testcase_58 AC 56 ms
37,220 KB
testcase_59 AC 53 ms
37,296 KB
testcase_60 AC 73 ms
38,036 KB
testcase_61 AC 57 ms
37,200 KB
testcase_62 RE -
testcase_63 RE -
testcase_64 AC 81 ms
38,480 KB
testcase_65 RE -
testcase_66 WA -
testcase_67 AC 50 ms
37,240 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[m + 1];
		dp[0] = true;
		for (int i = 0; i < n; i++) {
			boolean[] wk = Arrays.copyOf(dp, m + 1);
			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