結果

問題 No.2672 Subset Xor Sum
ユーザー hato336hato336
提出日時 2024-03-15 21:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,448 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 406,972 KB
最終ジャッジ日時 2024-09-30 04:18:07
合計ジャッジ時間 20,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
89,728 KB
testcase_01 AC 140 ms
89,600 KB
testcase_02 AC 142 ms
89,600 KB
testcase_03 AC 137 ms
89,984 KB
testcase_04 AC 147 ms
89,600 KB
testcase_05 AC 145 ms
89,728 KB
testcase_06 AC 138 ms
89,856 KB
testcase_07 AC 136 ms
89,600 KB
testcase_08 AC 139 ms
89,728 KB
testcase_09 AC 139 ms
89,856 KB
testcase_10 AC 142 ms
89,728 KB
testcase_11 AC 138 ms
89,984 KB
testcase_12 AC 137 ms
89,728 KB
testcase_13 AC 137 ms
89,984 KB
testcase_14 AC 142 ms
89,600 KB
testcase_15 AC 137 ms
89,856 KB
testcase_16 AC 139 ms
89,728 KB
testcase_17 AC 141 ms
89,728 KB
testcase_18 AC 136 ms
89,472 KB
testcase_19 AC 138 ms
89,728 KB
testcase_20 AC 139 ms
89,984 KB
testcase_21 AC 140 ms
89,728 KB
testcase_22 AC 137 ms
89,600 KB
testcase_23 AC 143 ms
90,112 KB
testcase_24 AC 139 ms
89,600 KB
testcase_25 AC 139 ms
89,728 KB
testcase_26 AC 121 ms
85,376 KB
testcase_27 AC 128 ms
85,632 KB
testcase_28 AC 139 ms
89,472 KB
testcase_29 AC 148 ms
89,600 KB
testcase_30 AC 139 ms
89,600 KB
testcase_31 AC 224 ms
157,184 KB
testcase_32 AC 173 ms
114,048 KB
testcase_33 AC 166 ms
111,360 KB
testcase_34 AC 198 ms
136,320 KB
testcase_35 AC 221 ms
157,056 KB
testcase_36 AC 206 ms
142,720 KB
testcase_37 AC 213 ms
149,888 KB
testcase_38 AC 173 ms
117,760 KB
testcase_39 AC 244 ms
146,624 KB
testcase_40 AC 147 ms
98,660 KB
testcase_41 AC 178 ms
130,560 KB
testcase_42 AC 203 ms
149,888 KB
testcase_43 AC 181 ms
136,448 KB
testcase_44 AC 227 ms
150,260 KB
testcase_45 AC 183 ms
135,936 KB
testcase_46 AC 135 ms
89,856 KB
testcase_47 AC 1,448 ms
406,200 KB
testcase_48 AC 138 ms
89,728 KB
testcase_49 AC 136 ms
89,728 KB
testcase_50 AC 127 ms
89,856 KB
testcase_51 AC 1,422 ms
406,972 KB
testcase_52 AC 142 ms
89,984 KB
testcase_53 AC 137 ms
89,984 KB
testcase_54 AC 1,398 ms
406,592 KB
testcase_55 AC 1,359 ms
406,840 KB
testcase_56 AC 136 ms
89,472 KB
testcase_57 AC 969 ms
310,656 KB
testcase_58 AC 415 ms
155,392 KB
testcase_59 AC 127 ms
85,376 KB
testcase_60 AC 143 ms
89,344 KB
testcase_61 AC 142 ms
89,600 KB
testcase_62 AC 684 ms
222,720 KB
testcase_63 AC 789 ms
245,248 KB
testcase_64 AC 142 ms
89,984 KB
testcase_65 AC 439 ms
155,264 KB
testcase_66 AC 139 ms
89,728 KB
testcase_67 AC 127 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
n = int(input())
a = list(map(int,input().split()))
if functools.reduce(operator.xor,a) != 0:
    print('No')
    exit()

c = collections.Counter(a)
for i in a:
    if c[i] >= 2 and n >= 3:
        print('Yes')
        exit()

dp = [[0 for i in range(8192)] for j in range(n+1)]
dp[1][a[0]] = 1
for i in range(n):
    for j in range(8192):
        dp[i+1][j] += dp[i][j]
        dp[i+1][j ^ a[i]] += dp[i][j]
        dp[i+1][j] = min(dp[i+1][j],2)
        dp[i+1][j ^ a[i]] = min(dp[i+1][j ^ a[i]],2)
print('Yes' if dp[-1][0] >= 2 else 'No')
0