結果

問題 No.2672 Subset Xor Sum
ユーザー ks2mks2m
提出日時 2024-03-15 22:00:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 78,132 KB
実行使用メモリ 80,052 KB
最終ジャッジ日時 2024-09-30 04:19:54
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,052 KB
testcase_01 AC 54 ms
37,144 KB
testcase_02 AC 55 ms
36,856 KB
testcase_03 AC 55 ms
37,228 KB
testcase_04 AC 55 ms
37,080 KB
testcase_05 AC 56 ms
37,156 KB
testcase_06 AC 56 ms
37,208 KB
testcase_07 AC 57 ms
37,112 KB
testcase_08 AC 55 ms
37,008 KB
testcase_09 AC 54 ms
37,044 KB
testcase_10 AC 56 ms
36,756 KB
testcase_11 AC 56 ms
37,064 KB
testcase_12 AC 55 ms
37,128 KB
testcase_13 AC 57 ms
36,992 KB
testcase_14 AC 56 ms
36,988 KB
testcase_15 AC 54 ms
37,100 KB
testcase_16 AC 55 ms
37,192 KB
testcase_17 AC 55 ms
36,932 KB
testcase_18 AC 55 ms
37,060 KB
testcase_19 AC 56 ms
36,660 KB
testcase_20 AC 55 ms
37,128 KB
testcase_21 AC 55 ms
36,928 KB
testcase_22 AC 55 ms
36,764 KB
testcase_23 AC 54 ms
37,048 KB
testcase_24 AC 56 ms
37,028 KB
testcase_25 AC 55 ms
36,648 KB
testcase_26 AC 55 ms
36,800 KB
testcase_27 AC 55 ms
36,796 KB
testcase_28 AC 56 ms
37,144 KB
testcase_29 AC 57 ms
36,680 KB
testcase_30 AC 55 ms
37,052 KB
testcase_31 AC 375 ms
78,924 KB
testcase_32 AC 260 ms
56,052 KB
testcase_33 AC 224 ms
52,024 KB
testcase_34 AC 345 ms
67,984 KB
testcase_35 AC 372 ms
77,788 KB
testcase_36 AC 380 ms
68,724 KB
testcase_37 AC 364 ms
76,220 KB
testcase_38 AC 271 ms
56,248 KB
testcase_39 AC 373 ms
80,052 KB
testcase_40 AC 166 ms
46,052 KB
testcase_41 AC 287 ms
60,912 KB
testcase_42 AC 370 ms
79,356 KB
testcase_43 AC 356 ms
67,892 KB
testcase_44 AC 369 ms
79,892 KB
testcase_45 AC 340 ms
67,468 KB
testcase_46 AC 90 ms
38,552 KB
testcase_47 AC 90 ms
38,444 KB
testcase_48 AC 87 ms
38,688 KB
testcase_49 AC 86 ms
38,548 KB
testcase_50 AC 72 ms
38,540 KB
testcase_51 AC 82 ms
38,432 KB
testcase_52 AC 75 ms
38,644 KB
testcase_53 AC 88 ms
38,752 KB
testcase_54 AC 94 ms
51,172 KB
testcase_55 AC 84 ms
51,372 KB
testcase_56 AC 90 ms
51,500 KB
testcase_57 AC 84 ms
51,188 KB
testcase_58 AC 61 ms
50,108 KB
testcase_59 AC 59 ms
50,228 KB
testcase_60 AC 72 ms
50,740 KB
testcase_61 AC 62 ms
49,896 KB
testcase_62 AC 73 ms
51,252 KB
testcase_63 AC 80 ms
50,896 KB
testcase_64 AC 85 ms
51,272 KB
testcase_65 AC 61 ms
50,380 KB
testcase_66 AC 55 ms
50,164 KB
testcase_67 AC 55 ms
50,196 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;
		}

		if (n > 2) {
			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