結果

問題 No.2672 Subset Xor Sum
ユーザー nu50218nu50218
提出日時 2024-03-13 21:02:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 396,752 KB
最終ジャッジ日時 2024-09-29 23:36:29
合計ジャッジ時間 17,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,284 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
60,004 KB
testcase_06 AC 43 ms
60,980 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
61,164 KB
testcase_11 AC 40 ms
60,196 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 41 ms
60,388 KB
testcase_23 AC 40 ms
60,344 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 61 ms
69,640 KB
testcase_27 AC 62 ms
70,456 KB
testcase_28 AC 43 ms
60,664 KB
testcase_29 AC 41 ms
60,732 KB
testcase_30 WA -
testcase_31 AC 137 ms
132,252 KB
testcase_32 AC 76 ms
95,572 KB
testcase_33 AC 70 ms
91,148 KB
testcase_34 AC 114 ms
111,344 KB
testcase_35 AC 135 ms
132,148 KB
testcase_36 AC 122 ms
116,176 KB
testcase_37 AC 131 ms
125,268 KB
testcase_38 AC 81 ms
102,412 KB
testcase_39 AC 149 ms
142,548 KB
testcase_40 AC 58 ms
74,992 KB
testcase_41 AC 97 ms
117,216 KB
testcase_42 AC 130 ms
125,088 KB
testcase_43 AC 119 ms
111,324 KB
testcase_44 AC 143 ms
142,436 KB
testcase_45 AC 113 ms
111,220 KB
testcase_46 AC 42 ms
59,976 KB
testcase_47 AC 1,395 ms
395,944 KB
testcase_48 AC 41 ms
60,060 KB
testcase_49 AC 38 ms
60,068 KB
testcase_50 AC 40 ms
60,144 KB
testcase_51 AC 1,339 ms
396,400 KB
testcase_52 AC 1,349 ms
396,600 KB
testcase_53 AC 1,360 ms
396,340 KB
testcase_54 AC 1,363 ms
395,880 KB
testcase_55 AC 1,386 ms
396,752 KB
testcase_56 AC 42 ms
60,112 KB
testcase_57 AC 847 ms
297,120 KB
testcase_58 AC 233 ms
135,548 KB
testcase_59 AC 39 ms
52,624 KB
testcase_60 AC 43 ms
59,200 KB
testcase_61 AC 43 ms
59,404 KB
testcase_62 AC 485 ms
203,208 KB
testcase_63 AC 557 ms
225,852 KB
testcase_64 AC 1,113 ms
338,812 KB
testcase_65 AC 298 ms
136,164 KB
testcase_66 WA -
testcase_67 AC 38 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3

# 2
# 1 1
# でYesを返す噓解法


import sys

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

xor_s = 0
for i in range(n):
    xor_s ^= a[i]

if xor_s != 0:
    print("No")
    sys.exit()

if n > 5001:
    print("Yes")
    sys.exit()

MAX_XOR = 2**13

dp = [[False for j in range(MAX_XOR)] for i in range(n)]

dp[1][a[1]] = True

# 配るDP
for i in range(1, n - 1):
    dp[i + 1] = dp[i]
    dp[i + 1][a[i + 1]] = True
    for j in range(MAX_XOR):
        if (dp[i][j] == False):
            continue
        dp[i + 1][j ^ a[i + 1]] = True

if (dp[n - 1][a[0]] == True):
    print("Yes")
else:
    print("No")
0