結果

問題 No.2672 Subset Xor Sum
ユーザー detteiuudetteiuu
提出日時 2024-05-26 16:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 142,560 KB
最終ジャッジ日時 2024-05-26 16:26:27
合計ジャッジ時間 7,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,356 KB
testcase_01 AC 44 ms
60,120 KB
testcase_02 AC 48 ms
62,872 KB
testcase_03 AC 48 ms
63,476 KB
testcase_04 AC 47 ms
63,068 KB
testcase_05 AC 47 ms
63,800 KB
testcase_06 AC 48 ms
63,556 KB
testcase_07 AC 47 ms
63,348 KB
testcase_08 AC 47 ms
63,800 KB
testcase_09 AC 47 ms
62,172 KB
testcase_10 AC 60 ms
62,852 KB
testcase_11 AC 46 ms
62,768 KB
testcase_12 AC 49 ms
63,612 KB
testcase_13 AC 47 ms
62,760 KB
testcase_14 AC 47 ms
62,248 KB
testcase_15 AC 49 ms
62,732 KB
testcase_16 AC 47 ms
63,468 KB
testcase_17 AC 48 ms
62,644 KB
testcase_18 AC 47 ms
63,764 KB
testcase_19 AC 57 ms
63,088 KB
testcase_20 AC 49 ms
62,952 KB
testcase_21 AC 48 ms
62,924 KB
testcase_22 AC 48 ms
62,540 KB
testcase_23 AC 46 ms
61,416 KB
testcase_24 AC 48 ms
61,984 KB
testcase_25 AC 47 ms
62,264 KB
testcase_26 AC 38 ms
52,560 KB
testcase_27 AC 40 ms
53,216 KB
testcase_28 AC 55 ms
62,992 KB
testcase_29 AC 48 ms
64,144 KB
testcase_30 AC 59 ms
63,012 KB
testcase_31 AC 137 ms
132,368 KB
testcase_32 AC 77 ms
96,880 KB
testcase_33 AC 74 ms
91,588 KB
testcase_34 AC 116 ms
111,380 KB
testcase_35 AC 135 ms
132,336 KB
testcase_36 AC 123 ms
116,308 KB
testcase_37 AC 127 ms
125,256 KB
testcase_38 AC 81 ms
101,424 KB
testcase_39 AC 166 ms
142,560 KB
testcase_40 AC 58 ms
76,112 KB
testcase_41 AC 108 ms
117,436 KB
testcase_42 AC 133 ms
125,048 KB
testcase_43 AC 116 ms
111,308 KB
testcase_44 AC 147 ms
142,356 KB
testcase_45 AC 114 ms
111,180 KB
testcase_46 AC 44 ms
60,312 KB
testcase_47 AC 55 ms
67,696 KB
testcase_48 AC 43 ms
60,544 KB
testcase_49 AC 45 ms
61,180 KB
testcase_50 AC 50 ms
61,160 KB
testcase_51 AC 51 ms
67,008 KB
testcase_52 AC 48 ms
62,380 KB
testcase_53 AC 44 ms
60,772 KB
testcase_54 AC 51 ms
66,196 KB
testcase_55 AC 52 ms
66,696 KB
testcase_56 AC 43 ms
61,328 KB
testcase_57 AC 55 ms
63,956 KB
testcase_58 AC 52 ms
65,884 KB
testcase_59 AC 40 ms
52,652 KB
testcase_60 AC 43 ms
59,556 KB
testcase_61 AC 43 ms
59,720 KB
testcase_62 AC 52 ms
66,036 KB
testcase_63 AC 51 ms
65,444 KB
testcase_64 AC 47 ms
60,360 KB
testcase_65 AC 53 ms
65,688 KB
testcase_66 AC 40 ms
52,492 KB
testcase_67 AC 39 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

xor = 0
for i in range(N):
    xor ^= A[i]

if xor:
    exit(print("No"))

if N == 2:
    if A[0] == 0:
        print("Yes")
    else:
        print("No")
    exit()

S = set()
for i in range(N):
    if A[i] in S:
        exit(print("Yes"))
    S.add(A[i])

L = list(S)
dp = [False]*(1<<14)
dp[0] = True
dpN = [False]*(1<<14)
for i in range(len(L)-1):
    for j in range(1<<14):
        if dp[j]:
            dpN[j] = True
            if not j ^ L[i]:
                exit(print("Yes"))
            dpN[j^L[i]] = True
    dp = dpN[:]
    dpN = [False]*(1<<14)

print("No")
0