結果

問題 No.2672 Subset Xor Sum
ユーザー hato336hato336
提出日時 2024-03-15 21:44:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 407,092 KB
最終ジャッジ日時 2024-09-30 00:39:00
合計ジャッジ時間 18,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
90,048 KB
testcase_01 AC 123 ms
89,912 KB
testcase_02 AC 132 ms
90,008 KB
testcase_03 AC 134 ms
90,036 KB
testcase_04 AC 139 ms
89,988 KB
testcase_05 AC 132 ms
89,800 KB
testcase_06 AC 126 ms
90,100 KB
testcase_07 AC 127 ms
89,928 KB
testcase_08 AC 123 ms
89,840 KB
testcase_09 AC 126 ms
89,856 KB
testcase_10 AC 123 ms
90,048 KB
testcase_11 AC 126 ms
90,144 KB
testcase_12 AC 127 ms
89,988 KB
testcase_13 AC 125 ms
90,032 KB
testcase_14 AC 126 ms
89,860 KB
testcase_15 AC 122 ms
90,092 KB
testcase_16 AC 123 ms
90,008 KB
testcase_17 AC 126 ms
89,928 KB
testcase_18 AC 126 ms
90,020 KB
testcase_19 AC 131 ms
89,912 KB
testcase_20 AC 134 ms
90,012 KB
testcase_21 AC 127 ms
89,944 KB
testcase_22 AC 128 ms
89,860 KB
testcase_23 AC 129 ms
89,940 KB
testcase_24 AC 127 ms
89,868 KB
testcase_25 AC 125 ms
89,980 KB
testcase_26 AC 110 ms
85,932 KB
testcase_27 AC 110 ms
85,840 KB
testcase_28 AC 131 ms
90,092 KB
testcase_29 AC 123 ms
89,932 KB
testcase_30 AC 123 ms
89,980 KB
testcase_31 AC 206 ms
157,144 KB
testcase_32 AC 154 ms
114,736 KB
testcase_33 AC 152 ms
111,504 KB
testcase_34 AC 186 ms
136,568 KB
testcase_35 AC 201 ms
157,320 KB
testcase_36 AC 190 ms
142,996 KB
testcase_37 AC 197 ms
150,108 KB
testcase_38 AC 160 ms
117,896 KB
testcase_39 AC 226 ms
146,804 KB
testcase_40 AC 136 ms
99,052 KB
testcase_41 AC 162 ms
130,772 KB
testcase_42 AC 176 ms
150,168 KB
testcase_43 AC 167 ms
136,724 KB
testcase_44 AC 206 ms
150,580 KB
testcase_45 AC 171 ms
136,132 KB
testcase_46 AC 130 ms
90,004 KB
testcase_47 AC 1,399 ms
406,844 KB
testcase_48 AC 116 ms
89,940 KB
testcase_49 AC 116 ms
90,012 KB
testcase_50 AC 114 ms
89,788 KB
testcase_51 AC 1,326 ms
407,092 KB
testcase_52 AC 123 ms
90,192 KB
testcase_53 AC 122 ms
90,060 KB
testcase_54 AC 1,316 ms
406,712 KB
testcase_55 AC 1,328 ms
406,840 KB
testcase_56 AC 117 ms
90,164 KB
testcase_57 AC 916 ms
311,164 KB
testcase_58 AC 401 ms
155,724 KB
testcase_59 AC 107 ms
86,084 KB
testcase_60 AC 115 ms
89,848 KB
testcase_61 AC 117 ms
89,780 KB
testcase_62 AC 634 ms
222,904 KB
testcase_63 AC 736 ms
245,384 KB
testcase_64 AC 120 ms
90,208 KB
testcase_65 AC 409 ms
155,736 KB
testcase_66 WA -
testcase_67 AC 109 ms
85,888 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(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