結果

問題 No.2672 Subset Xor Sum
ユーザー Daiki OkayamaDaiki Okayama
提出日時 2024-03-15 22:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 171,848 KB
最終ジャッジ日時 2024-09-30 04:23:23
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,912 KB
testcase_01 AC 40 ms
55,640 KB
testcase_02 AC 46 ms
63,072 KB
testcase_03 AC 42 ms
56,028 KB
testcase_04 AC 39 ms
56,300 KB
testcase_05 AC 42 ms
63,304 KB
testcase_06 AC 43 ms
63,644 KB
testcase_07 AC 43 ms
63,080 KB
testcase_08 AC 42 ms
62,796 KB
testcase_09 AC 44 ms
61,940 KB
testcase_10 AC 45 ms
64,248 KB
testcase_11 AC 48 ms
62,824 KB
testcase_12 AC 42 ms
62,580 KB
testcase_13 AC 43 ms
61,588 KB
testcase_14 AC 44 ms
62,308 KB
testcase_15 AC 42 ms
62,436 KB
testcase_16 AC 44 ms
62,756 KB
testcase_17 AC 43 ms
62,624 KB
testcase_18 AC 44 ms
62,628 KB
testcase_19 AC 44 ms
62,784 KB
testcase_20 AC 46 ms
62,968 KB
testcase_21 AC 45 ms
63,148 KB
testcase_22 AC 41 ms
55,636 KB
testcase_23 AC 39 ms
56,012 KB
testcase_24 AC 39 ms
56,100 KB
testcase_25 AC 40 ms
55,516 KB
testcase_26 AC 46 ms
64,580 KB
testcase_27 AC 45 ms
64,196 KB
testcase_28 AC 44 ms
63,960 KB
testcase_29 AC 44 ms
64,428 KB
testcase_30 AC 43 ms
62,044 KB
testcase_31 AC 171 ms
162,876 KB
testcase_32 AC 88 ms
106,084 KB
testcase_33 AC 87 ms
103,868 KB
testcase_34 AC 115 ms
116,896 KB
testcase_35 AC 160 ms
162,800 KB
testcase_36 AC 118 ms
124,324 KB
testcase_37 AC 127 ms
130,440 KB
testcase_38 AC 91 ms
107,948 KB
testcase_39 AC 166 ms
171,848 KB
testcase_40 AC 60 ms
82,516 KB
testcase_41 AC 99 ms
106,668 KB
testcase_42 AC 121 ms
128,868 KB
testcase_43 AC 108 ms
113,816 KB
testcase_44 AC 132 ms
145,508 KB
testcase_45 AC 109 ms
113,924 KB
testcase_46 AC 46 ms
62,808 KB
testcase_47 AC 51 ms
67,344 KB
testcase_48 AC 47 ms
62,448 KB
testcase_49 AC 46 ms
63,020 KB
testcase_50 AC 45 ms
62,416 KB
testcase_51 AC 50 ms
67,884 KB
testcase_52 AC 49 ms
66,784 KB
testcase_53 AC 51 ms
67,248 KB
testcase_54 AC 48 ms
65,792 KB
testcase_55 AC 48 ms
65,936 KB
testcase_56 AC 43 ms
62,704 KB
testcase_57 AC 45 ms
62,520 KB
testcase_58 AC 47 ms
65,456 KB
testcase_59 AC 40 ms
55,388 KB
testcase_60 AC 43 ms
62,208 KB
testcase_61 AC 44 ms
62,200 KB
testcase_62 AC 49 ms
67,952 KB
testcase_63 AC 48 ms
64,852 KB
testcase_64 AC 49 ms
67,000 KB
testcase_65 AC 49 ms
67,860 KB
testcase_66 AC 40 ms
55,356 KB
testcase_67 AC 40 ms
55,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import functools
import operator

n = int(input())
a = list(map(int, input().split()))

x = functools.reduce(operator.xor, a)

if x != 0:
    print("No")
    exit()


# dp[i][b] := i番目までの整数を利用して、xor が b になるような組み合わせが存在するか
dp: list[set[int]] = [set() for _ in range(n - 1)]

dp[0].add(a[0])

for i in range(1, n - 1):
    for b in dp[i - 1]:
        dp[i].add(b)
        dp[i].add(b ^ a[i])
    if 0 in dp[i]:
        print("Yes")
        break
else:
    print("No")
0