結果

問題 No.2672 Subset Xor Sum
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-03 01:12:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 142,532 KB
最終ジャッジ日時 2024-08-03 01:13:03
合計ジャッジ時間 6,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,324 KB
testcase_01 AC 34 ms
52,312 KB
testcase_02 AC 42 ms
62,828 KB
testcase_03 AC 40 ms
60,656 KB
testcase_04 AC 41 ms
61,128 KB
testcase_05 AC 40 ms
60,408 KB
testcase_06 AC 39 ms
60,408 KB
testcase_07 AC 42 ms
63,764 KB
testcase_08 AC 44 ms
63,288 KB
testcase_09 AC 43 ms
63,212 KB
testcase_10 AC 40 ms
61,020 KB
testcase_11 AC 39 ms
61,064 KB
testcase_12 AC 43 ms
64,148 KB
testcase_13 AC 42 ms
63,204 KB
testcase_14 AC 41 ms
63,616 KB
testcase_15 AC 42 ms
63,164 KB
testcase_16 AC 43 ms
64,868 KB
testcase_17 AC 46 ms
64,232 KB
testcase_18 AC 42 ms
64,336 KB
testcase_19 AC 42 ms
63,884 KB
testcase_20 AC 41 ms
63,448 KB
testcase_21 AC 44 ms
64,776 KB
testcase_22 AC 41 ms
59,820 KB
testcase_23 AC 43 ms
59,356 KB
testcase_24 AC 41 ms
60,484 KB
testcase_25 AC 46 ms
60,820 KB
testcase_26 AC 40 ms
60,364 KB
testcase_27 AC 41 ms
61,780 KB
testcase_28 AC 44 ms
62,328 KB
testcase_29 AC 41 ms
61,640 KB
testcase_30 AC 45 ms
64,992 KB
testcase_31 AC 130 ms
132,036 KB
testcase_32 AC 68 ms
97,200 KB
testcase_33 AC 62 ms
90,712 KB
testcase_34 AC 108 ms
111,772 KB
testcase_35 AC 121 ms
131,540 KB
testcase_36 AC 108 ms
116,472 KB
testcase_37 AC 112 ms
124,860 KB
testcase_38 AC 69 ms
100,400 KB
testcase_39 AC 130 ms
142,532 KB
testcase_40 AC 50 ms
74,836 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 42 ms
62,004 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 39 ms
61,740 KB
testcase_52 AC 36 ms
59,788 KB
testcase_53 AC 40 ms
62,636 KB
testcase_54 AC 39 ms
60,364 KB
testcase_55 AC 38 ms
61,180 KB
testcase_56 WA -
testcase_57 AC 36 ms
58,292 KB
testcase_58 AC 41 ms
60,660 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 38 ms
60,428 KB
testcase_63 AC 37 ms
60,200 KB
testcase_64 AC 39 ms
62,008 KB
testcase_65 AC 38 ms
61,640 KB
testcase_66 AC 33 ms
52,608 KB
testcase_67 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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

    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