結果

問題 No.2672 Subset Xor Sum
ユーザー SoniSoni
提出日時 2024-03-15 23:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 152,876 KB
最終ジャッジ日時 2024-09-30 04:25:41
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 42 ms
53,248 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 AC 42 ms
53,248 KB
testcase_12 AC 43 ms
53,504 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 41 ms
53,376 KB
testcase_15 AC 40 ms
53,376 KB
testcase_16 AC 42 ms
53,504 KB
testcase_17 AC 41 ms
53,760 KB
testcase_18 AC 41 ms
53,632 KB
testcase_19 AC 40 ms
53,248 KB
testcase_20 AC 40 ms
53,760 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 40 ms
53,376 KB
testcase_23 AC 40 ms
53,504 KB
testcase_24 AC 40 ms
53,504 KB
testcase_25 AC 41 ms
53,504 KB
testcase_26 AC 47 ms
59,776 KB
testcase_27 AC 52 ms
59,776 KB
testcase_28 AC 42 ms
53,632 KB
testcase_29 AC 41 ms
53,760 KB
testcase_30 AC 41 ms
53,376 KB
testcase_31 AC 218 ms
141,220 KB
testcase_32 AC 119 ms
101,888 KB
testcase_33 AC 109 ms
98,432 KB
testcase_34 AC 169 ms
112,392 KB
testcase_35 AC 221 ms
140,824 KB
testcase_36 AC 190 ms
121,888 KB
testcase_37 AC 208 ms
130,652 KB
testcase_38 AC 127 ms
105,472 KB
testcase_39 AC 238 ms
152,876 KB
testcase_40 AC 90 ms
84,096 KB
testcase_41 AC 116 ms
107,008 KB
testcase_42 AC 135 ms
128,180 KB
testcase_43 AC 124 ms
111,868 KB
testcase_44 AC 149 ms
144,804 KB
testcase_45 AC 122 ms
110,408 KB
testcase_46 AC 46 ms
61,056 KB
testcase_47 AC 55 ms
65,152 KB
testcase_48 AC 47 ms
61,056 KB
testcase_49 AC 48 ms
61,312 KB
testcase_50 AC 48 ms
61,184 KB
testcase_51 AC 55 ms
63,488 KB
testcase_52 AC 55 ms
63,616 KB
testcase_53 AC 58 ms
65,408 KB
testcase_54 AC 54 ms
63,616 KB
testcase_55 AC 53 ms
63,104 KB
testcase_56 AC 47 ms
61,056 KB
testcase_57 AC 53 ms
63,232 KB
testcase_58 AC 52 ms
62,464 KB
testcase_59 AC 43 ms
53,632 KB
testcase_60 AC 52 ms
60,544 KB
testcase_61 AC 47 ms
60,544 KB
testcase_62 AC 53 ms
62,976 KB
testcase_63 AC 52 ms
62,976 KB
testcase_64 AC 57 ms
65,024 KB
testcase_65 AC 54 ms
62,976 KB
testcase_66 AC 43 ms
53,376 KB
testcase_67 AC 43 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# import bisect #二分探索
# import math

from collections import deque
from collections import defaultdict


def I():
    return int(sys.stdin.readline().rstrip())


def MI():
    return map(int, sys.stdin.readline().rstrip().split())


def LI():
    return list(map(int, sys.stdin.readline().rstrip().split()))


def LI2():
    return list(map(int, sys.stdin.readline().rstrip()))


def S():
    return sys.stdin.readline().rstrip()


def LS():
    return list(sys.stdin.readline().rstrip().split())


def LS2():
    return list(sys.stdin.readline().rstrip())

# 1次元の配列
# list(map(int, input().split()))
# 2次元の配列
# [list(map(int, input().split())) for i in range()]
# wsl pypy3 ファイル名

input = sys.stdin.readline
from collections import Counter, defaultdict

def XOR_Basis(lst):
    xor_basis=[]
    triangulation=[]
    for x in lst:
        xx=x
        for xb in triangulation:
            xx=min(xx,xx^xb)
        if xx:
            xor_basis.append(x)
            triangulation.append(xx)
    return xor_basis,triangulation

N = I()
A = LI()

total_xor = 0
for a in A:
    total_xor ^= a

if total_xor != 0:
    print("No")
    exit()

_,tria=XOR_Basis(A)

K=0
for x in tria:
    if K^x<K:
        K^=x

ans=pow(2,N-len(tria),10**9+7)

if ans == 2:
    print("No")
else:
    print("Yes")
0