結果

問題 No.2672 Subset Xor Sum
ユーザー ThetaTheta
提出日時 2024-04-18 17:59:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 145,952 KB
最終ジャッジ日時 2024-10-10 11:19:39
合計ジャッジ時間 7,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,984 KB
testcase_01 AC 47 ms
57,060 KB
testcase_02 AC 48 ms
64,420 KB
testcase_03 AC 48 ms
61,636 KB
testcase_04 AC 48 ms
62,684 KB
testcase_05 AC 48 ms
64,372 KB
testcase_06 AC 47 ms
62,944 KB
testcase_07 AC 48 ms
63,388 KB
testcase_08 AC 47 ms
62,816 KB
testcase_09 AC 47 ms
62,280 KB
testcase_10 AC 47 ms
62,684 KB
testcase_11 AC 49 ms
63,224 KB
testcase_12 AC 50 ms
63,816 KB
testcase_13 AC 48 ms
62,228 KB
testcase_14 AC 48 ms
61,940 KB
testcase_15 AC 48 ms
62,080 KB
testcase_16 AC 48 ms
63,236 KB
testcase_17 AC 49 ms
63,628 KB
testcase_18 AC 50 ms
61,944 KB
testcase_19 AC 50 ms
62,148 KB
testcase_20 AC 48 ms
62,520 KB
testcase_21 AC 48 ms
62,384 KB
testcase_22 AC 44 ms
55,464 KB
testcase_23 AC 44 ms
56,312 KB
testcase_24 AC 46 ms
62,572 KB
testcase_25 AC 48 ms
61,900 KB
testcase_26 AC 44 ms
55,520 KB
testcase_27 AC 42 ms
54,860 KB
testcase_28 AC 50 ms
65,628 KB
testcase_29 AC 50 ms
64,672 KB
testcase_30 AC 48 ms
62,376 KB
testcase_31 AC 140 ms
136,072 KB
testcase_32 AC 80 ms
99,284 KB
testcase_33 AC 76 ms
94,708 KB
testcase_34 AC 115 ms
113,864 KB
testcase_35 AC 133 ms
136,188 KB
testcase_36 AC 125 ms
120,864 KB
testcase_37 AC 131 ms
128,948 KB
testcase_38 AC 86 ms
103,384 KB
testcase_39 AC 147 ms
145,952 KB
testcase_40 AC 62 ms
78,556 KB
testcase_41 AC 110 ms
107,156 KB
testcase_42 AC 128 ms
128,976 KB
testcase_43 AC 117 ms
113,304 KB
testcase_44 AC 139 ms
145,888 KB
testcase_45 AC 116 ms
113,328 KB
testcase_46 AC 49 ms
63,188 KB
testcase_47 AC 54 ms
67,512 KB
testcase_48 AC 50 ms
62,772 KB
testcase_49 AC 48 ms
63,212 KB
testcase_50 AC 49 ms
62,132 KB
testcase_51 AC 51 ms
64,264 KB
testcase_52 AC 49 ms
65,052 KB
testcase_53 AC 49 ms
63,152 KB
testcase_54 AC 52 ms
65,608 KB
testcase_55 AC 51 ms
66,036 KB
testcase_56 AC 47 ms
64,152 KB
testcase_57 AC 49 ms
63,876 KB
testcase_58 AC 52 ms
64,416 KB
testcase_59 AC 45 ms
56,252 KB
testcase_60 AC 50 ms
62,600 KB
testcase_61 AC 48 ms
61,560 KB
testcase_62 AC 51 ms
64,792 KB
testcase_63 AC 51 ms
64,860 KB
testcase_64 AC 51 ms
63,348 KB
testcase_65 AC 54 ms
65,484 KB
testcase_66 WA -
testcase_67 AC 44 ms
55,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from operator import xor


def main():
    N = int(input())
    A = list(map(int, input().split()))
    if reduce(xor, A) != 0:
        print("No")
        return

    if len(set(A)) < len(A):
        print("Yes")
        return
    dp_table = [set((0,)), set()]

    for a_elm in A[:-1]:
        for xor_elm in dp_table[0]:
            dp_table[1].add(xor_elm)
            dp_table[1].add(xor_elm ^ a_elm)
            if xor_elm ^ a_elm == 0:
                print("Yes")
                return
        dp_table[0] = dp_table[1]
        dp_table[1] = set()
    print("No")


if __name__ == "__main__":
    main()
0