結果

問題 No.2672 Subset Xor Sum
ユーザー 寝癖寝癖
提出日時 2024-03-15 22:02:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 261,604 KB
最終ジャッジ日時 2024-09-30 01:14:51
合計ジャッジ時間 22,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,844 KB
testcase_01 AC 52 ms
63,980 KB
testcase_02 AC 60 ms
73,532 KB
testcase_03 AC 61 ms
72,712 KB
testcase_04 AC 60 ms
72,440 KB
testcase_05 AC 62 ms
73,080 KB
testcase_06 AC 62 ms
72,812 KB
testcase_07 AC 61 ms
72,044 KB
testcase_08 AC 60 ms
71,048 KB
testcase_09 AC 58 ms
72,056 KB
testcase_10 AC 59 ms
72,060 KB
testcase_11 AC 59 ms
72,300 KB
testcase_12 AC 59 ms
72,536 KB
testcase_13 AC 58 ms
72,152 KB
testcase_14 AC 59 ms
71,436 KB
testcase_15 AC 60 ms
72,808 KB
testcase_16 AC 59 ms
71,500 KB
testcase_17 AC 60 ms
71,880 KB
testcase_18 AC 59 ms
71,912 KB
testcase_19 AC 59 ms
71,740 KB
testcase_20 AC 58 ms
72,084 KB
testcase_21 AC 58 ms
72,508 KB
testcase_22 AC 59 ms
72,860 KB
testcase_23 AC 60 ms
72,796 KB
testcase_24 AC 58 ms
71,116 KB
testcase_25 AC 58 ms
71,000 KB
testcase_26 AC 37 ms
52,952 KB
testcase_27 AC 39 ms
53,360 KB
testcase_28 AC 62 ms
74,164 KB
testcase_29 AC 62 ms
73,884 KB
testcase_30 AC 62 ms
72,688 KB
testcase_31 AC 152 ms
132,220 KB
testcase_32 AC 86 ms
99,800 KB
testcase_33 AC 79 ms
96,420 KB
testcase_34 AC 129 ms
111,236 KB
testcase_35 AC 151 ms
132,360 KB
testcase_36 AC 135 ms
116,936 KB
testcase_37 AC 140 ms
125,360 KB
testcase_38 AC 94 ms
105,856 KB
testcase_39 AC 161 ms
142,348 KB
testcase_40 AC 62 ms
78,516 KB
testcase_41 AC 97 ms
116,612 KB
testcase_42 AC 129 ms
125,376 KB
testcase_43 AC 117 ms
111,172 KB
testcase_44 AC 141 ms
142,216 KB
testcase_45 AC 114 ms
111,136 KB
testcase_46 AC 43 ms
60,120 KB
testcase_47 TLE -
testcase_48 AC 44 ms
60,860 KB
testcase_49 AC 43 ms
60,080 KB
testcase_50 AC 43 ms
60,808 KB
testcase_51 TLE -
testcase_52 AC 48 ms
62,704 KB
testcase_53 AC 45 ms
62,736 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 43 ms
60,940 KB
testcase_57 AC 1,622 ms
207,264 KB
testcase_58 AC 587 ms
127,016 KB
testcase_59 AC 40 ms
52,760 KB
testcase_60 AC 43 ms
59,356 KB
testcase_61 AC 44 ms
59,040 KB
testcase_62 AC 1,141 ms
157,912 KB
testcase_63 AC 1,729 ms
178,144 KB
testcase_64 AC 46 ms
61,880 KB
testcase_65 AC 685 ms
126,852 KB
testcase_66 WA -
testcase_67 AC 40 ms
53,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = 0
for a in A:
    S ^= a
if S != 0:
    print("No")
    exit()

d = {}
for a in A:
    d[a] = d.get(a, 0) + 1

for k, v in d.items():
    if v >= 2:
        print("Yes")
        exit()
del d
M = 1<<13
dp = [[False, False] for _ in range(M)]
dp[0][0] = True

for i in range(N-1):
    nxt = [[False, False] for _ in range(M)]
    for j in range(M):
        nxt[j][0] |= dp[j][0]
        nxt[j][1] |= dp[j][1]
        nxt[j^A[i]][1] |= dp[j][0] | dp[j][1]
    dp = nxt

if dp[0][1]:
    print("Yes")
else:
    print("No")
0