結果

問題 No.2672 Subset Xor Sum
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-03 01:14:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 142,752 KB
最終ジャッジ日時 2024-08-03 01:14:59
合計ジャッジ時間 6,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,276 KB
testcase_01 AC 34 ms
53,204 KB
testcase_02 AC 43 ms
63,732 KB
testcase_03 AC 38 ms
61,828 KB
testcase_04 AC 46 ms
61,736 KB
testcase_05 AC 40 ms
60,700 KB
testcase_06 AC 41 ms
61,424 KB
testcase_07 AC 43 ms
64,000 KB
testcase_08 AC 43 ms
64,064 KB
testcase_09 AC 43 ms
63,324 KB
testcase_10 AC 40 ms
60,736 KB
testcase_11 AC 43 ms
60,956 KB
testcase_12 AC 46 ms
63,392 KB
testcase_13 AC 43 ms
63,548 KB
testcase_14 AC 43 ms
63,816 KB
testcase_15 AC 44 ms
63,700 KB
testcase_16 AC 43 ms
63,988 KB
testcase_17 AC 43 ms
63,732 KB
testcase_18 AC 42 ms
64,996 KB
testcase_19 AC 42 ms
64,724 KB
testcase_20 AC 44 ms
63,616 KB
testcase_21 AC 44 ms
63,804 KB
testcase_22 AC 39 ms
60,548 KB
testcase_23 AC 40 ms
61,164 KB
testcase_24 AC 39 ms
60,180 KB
testcase_25 AC 44 ms
60,608 KB
testcase_26 AC 38 ms
60,156 KB
testcase_27 AC 37 ms
60,376 KB
testcase_28 AC 43 ms
61,128 KB
testcase_29 AC 41 ms
61,400 KB
testcase_30 AC 43 ms
64,620 KB
testcase_31 AC 130 ms
132,148 KB
testcase_32 AC 71 ms
98,272 KB
testcase_33 AC 64 ms
91,960 KB
testcase_34 AC 104 ms
111,420 KB
testcase_35 AC 126 ms
131,772 KB
testcase_36 AC 110 ms
116,408 KB
testcase_37 AC 115 ms
124,916 KB
testcase_38 AC 81 ms
101,096 KB
testcase_39 AC 130 ms
142,752 KB
testcase_40 AC 50 ms
76,216 KB
testcase_41 AC 87 ms
116,824 KB
testcase_42 AC 117 ms
125,352 KB
testcase_43 AC 105 ms
111,136 KB
testcase_44 AC 128 ms
142,004 KB
testcase_45 AC 102 ms
111,112 KB
testcase_46 AC 36 ms
59,960 KB
testcase_47 AC 39 ms
62,228 KB
testcase_48 AC 38 ms
60,300 KB
testcase_49 AC 37 ms
60,164 KB
testcase_50 AC 37 ms
61,032 KB
testcase_51 AC 41 ms
61,600 KB
testcase_52 AC 37 ms
60,360 KB
testcase_53 AC 46 ms
63,176 KB
testcase_54 AC 40 ms
61,232 KB
testcase_55 AC 40 ms
61,244 KB
testcase_56 AC 38 ms
59,416 KB
testcase_57 AC 38 ms
59,500 KB
testcase_58 AC 38 ms
60,872 KB
testcase_59 AC 33 ms
52,584 KB
testcase_60 AC 36 ms
59,592 KB
testcase_61 AC 38 ms
58,816 KB
testcase_62 AC 39 ms
61,748 KB
testcase_63 AC 39 ms
60,676 KB
testcase_64 AC 39 ms
63,256 KB
testcase_65 AC 39 ms
61,664 KB
testcase_66 AC 34 ms
52,484 KB
testcase_67 AC 33 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2672


def main():
    N = int(input())
    A = list(map(int, input().split()))

    ans = 0
    for a in A:
        ans ^= a
    if ans != 0:
        print("No")
        return


    if N <= 16:
        for bit in range(1, 2 ** N - 1):
            ans = 0
            for i in range(N):
                if bit & (1 << i) > 0:
                    ans ^= A[i]

            if ans == 0:
                print("Yes")
                return
        print("No")
    else: 
        a_set = set()
        for a in A:
            if a not in a_set:
                b_array = []
                for b in a_set:
                    b_array.append(a ^ b)
                for b in b_array:
                    a_set.add(b)
                a_set.add(a)
            else:
                print("Yes")
                return
        
        print("No")


        



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