結果

問題 No.2672 Subset Xor Sum
ユーザー SoniSoni
提出日時 2024-03-15 23:35:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,272 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,892 KB
最終ジャッジ日時 2024-09-30 03:09:18
合計ジャッジ時間 7,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 43 ms
53,632 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 44 ms
53,760 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 44 ms
53,376 KB
testcase_12 AC 45 ms
54,016 KB
testcase_13 AC 45 ms
53,376 KB
testcase_14 AC 44 ms
53,600 KB
testcase_15 AC 43 ms
53,504 KB
testcase_16 AC 43 ms
53,504 KB
testcase_17 AC 43 ms
53,760 KB
testcase_18 AC 43 ms
53,376 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 43 ms
53,632 KB
testcase_21 AC 46 ms
53,632 KB
testcase_22 AC 42 ms
53,760 KB
testcase_23 AC 43 ms
53,760 KB
testcase_24 AC 43 ms
53,760 KB
testcase_25 AC 43 ms
53,504 KB
testcase_26 AC 47 ms
60,032 KB
testcase_27 AC 48 ms
59,776 KB
testcase_28 AC 44 ms
53,760 KB
testcase_29 AC 44 ms
53,504 KB
testcase_30 AC 44 ms
53,632 KB
testcase_31 AC 217 ms
140,924 KB
testcase_32 AC 115 ms
101,660 KB
testcase_33 AC 105 ms
98,432 KB
testcase_34 AC 170 ms
110,300 KB
testcase_35 AC 213 ms
140,320 KB
testcase_36 AC 185 ms
121,776 KB
testcase_37 AC 207 ms
130,528 KB
testcase_38 AC 125 ms
105,304 KB
testcase_39 AC 233 ms
152,520 KB
testcase_40 AC 79 ms
83,328 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 53 ms
64,512 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 52 ms
62,592 KB
testcase_52 AC 51 ms
62,592 KB
testcase_53 AC 54 ms
65,024 KB
testcase_54 AC 51 ms
62,808 KB
testcase_55 AC 57 ms
62,592 KB
testcase_56 WA -
testcase_57 AC 51 ms
62,464 KB
testcase_58 AC 50 ms
61,696 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 51 ms
62,080 KB
testcase_63 AC 50 ms
62,208 KB
testcase_64 AC 53 ms
64,256 KB
testcase_65 AC 51 ms
62,464 KB
testcase_66 AC 43 ms
53,376 KB
testcase_67 AC 43 ms
53,632 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()
_,tria=XOR_Basis(A)

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

if K:
    ans=0
else:
    ans=pow(2,N-len(tria),10**9+7)

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