結果

問題 No.2672 Subset Xor Sum
ユーザー mkawa2mkawa2
提出日時 2024-03-15 21:41:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,046 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 145,440 KB
最終ジャッジ日時 2024-09-30 00:35:25
合計ジャッジ時間 6,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,272 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 50 ms
63,360 KB
testcase_03 AC 51 ms
61,952 KB
testcase_04 AC 52 ms
61,696 KB
testcase_05 AC 50 ms
61,824 KB
testcase_06 AC 51 ms
61,440 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 44 ms
54,016 KB
testcase_10 AC 50 ms
61,440 KB
testcase_11 AC 53 ms
61,096 KB
testcase_12 AC 45 ms
54,272 KB
testcase_13 AC 44 ms
53,632 KB
testcase_14 AC 46 ms
53,504 KB
testcase_15 AC 44 ms
53,760 KB
testcase_16 AC 44 ms
53,760 KB
testcase_17 AC 45 ms
53,632 KB
testcase_18 AC 43 ms
53,504 KB
testcase_19 AC 45 ms
54,016 KB
testcase_20 AC 44 ms
53,760 KB
testcase_21 AC 45 ms
53,760 KB
testcase_22 AC 46 ms
54,272 KB
testcase_23 AC 45 ms
53,760 KB
testcase_24 AC 52 ms
61,952 KB
testcase_25 AC 51 ms
61,696 KB
testcase_26 AC 54 ms
61,952 KB
testcase_27 AC 53 ms
62,208 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 44 ms
53,632 KB
testcase_31 AC 143 ms
135,240 KB
testcase_32 AC 84 ms
98,360 KB
testcase_33 WA -
testcase_34 AC 123 ms
112,532 KB
testcase_35 WA -
testcase_36 AC 129 ms
119,952 KB
testcase_37 AC 135 ms
126,024 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 111 ms
106,928 KB
testcase_42 WA -
testcase_43 AC 118 ms
112,348 KB
testcase_44 WA -
testcase_45 AC 117 ms
110,540 KB
testcase_46 AC 48 ms
61,312 KB
testcase_47 AC 51 ms
64,512 KB
testcase_48 WA -
testcase_49 AC 48 ms
61,312 KB
testcase_50 AC 48 ms
61,312 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 53 ms
63,104 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 52 ms
61,184 KB
testcase_58 AC 51 ms
62,336 KB
testcase_59 AC 44 ms
54,016 KB
testcase_60 AC 49 ms
60,800 KB
testcase_61 AC 51 ms
60,800 KB
testcase_62 WA -
testcase_63 AC 51 ms
62,720 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 44 ms
53,632 KB
testcase_67 AC 44 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import Counter

n=II()
aa=LI()

x=0
for a in aa:x^=1
if x:
    print("No")
    exit()

cnt=Counter()
cnt[0]=1
for i,a in enumerate(aa):
    if a in cnt and (i<n-1 or cnt[a]>1):
        print("Yes")
        exit()
    for b in list(cnt):cnt[a^b]+=1

print("No")
0