結果

問題 No.2672 Subset Xor Sum
ユーザー hato336hato336
提出日時 2024-03-15 21:32:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 721 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 726,908 KB
最終ジャッジ日時 2024-09-30 00:28:03
合計ジャッジ時間 28,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
89,728 KB
testcase_01 AC 135 ms
89,728 KB
testcase_02 AC 136 ms
89,848 KB
testcase_03 AC 135 ms
89,888 KB
testcase_04 AC 137 ms
89,728 KB
testcase_05 AC 136 ms
89,804 KB
testcase_06 AC 136 ms
90,068 KB
testcase_07 AC 136 ms
89,924 KB
testcase_08 AC 144 ms
89,856 KB
testcase_09 AC 145 ms
89,856 KB
testcase_10 AC 143 ms
89,868 KB
testcase_11 AC 144 ms
89,728 KB
testcase_12 AC 145 ms
89,856 KB
testcase_13 AC 141 ms
89,728 KB
testcase_14 AC 135 ms
89,856 KB
testcase_15 AC 136 ms
90,084 KB
testcase_16 AC 134 ms
89,856 KB
testcase_17 AC 134 ms
89,856 KB
testcase_18 AC 136 ms
89,856 KB
testcase_19 AC 135 ms
89,728 KB
testcase_20 AC 137 ms
89,856 KB
testcase_21 AC 138 ms
89,728 KB
testcase_22 AC 140 ms
89,728 KB
testcase_23 AC 139 ms
89,728 KB
testcase_24 AC 137 ms
89,856 KB
testcase_25 AC 140 ms
89,848 KB
testcase_26 AC 120 ms
85,760 KB
testcase_27 AC 124 ms
85,504 KB
testcase_28 AC 152 ms
89,844 KB
testcase_29 AC 147 ms
89,728 KB
testcase_30 AC 146 ms
89,752 KB
testcase_31 AC 243 ms
157,312 KB
testcase_32 AC 176 ms
114,432 KB
testcase_33 AC 169 ms
111,568 KB
testcase_34 AC 211 ms
136,576 KB
testcase_35 AC 232 ms
157,312 KB
testcase_36 AC 213 ms
142,720 KB
testcase_37 AC 222 ms
150,144 KB
testcase_38 AC 180 ms
118,092 KB
testcase_39 AC 250 ms
146,620 KB
testcase_40 AC 170 ms
98,688 KB
testcase_41 AC 201 ms
130,816 KB
testcase_42 AC 211 ms
150,108 KB
testcase_43 AC 205 ms
136,576 KB
testcase_44 AC 246 ms
150,500 KB
testcase_45 AC 190 ms
136,064 KB
testcase_46 AC 131 ms
90,004 KB
testcase_47 TLE -
testcase_48 AC 174 ms
89,764 KB
testcase_49 AC 131 ms
89,836 KB
testcase_50 AC 132 ms
89,860 KB
testcase_51 TLE -
testcase_52 AC 134 ms
90,368 KB
testcase_53 AC 142 ms
89,856 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 145 ms
89,572 KB
testcase_57 MLE -
testcase_58 AC 712 ms
242,048 KB
testcase_59 AC 121 ms
85,760 KB
testcase_60 AC 131 ms
89,732 KB
testcase_61 AC 136 ms
89,472 KB
testcase_62 AC 1,183 ms
359,860 KB
testcase_63 AC 1,415 ms
421,664 KB
testcase_64 AC 133 ms
90,240 KB
testcase_65 AC 724 ms
243,968 KB
testcase_66 WA -
testcase_67 AC 124 ms
85,760 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:
        print('Yes')
        exit()

dp = [[0 for i in range(1<<13+1)] for j in range(n+1)]
dp[1][a[0]] = 1
for i in range(n):
    for j in range(1<<13+1):
        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