結果

問題 No.2672 Subset Xor Sum
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-03 01:11:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 143,360 KB
最終ジャッジ日時 2024-08-03 01:11:43
合計ジャッジ時間 21,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,304 KB
testcase_01 AC 36 ms
53,476 KB
testcase_02 AC 46 ms
62,856 KB
testcase_03 AC 44 ms
60,412 KB
testcase_04 AC 43 ms
60,804 KB
testcase_05 AC 44 ms
60,492 KB
testcase_06 AC 43 ms
60,640 KB
testcase_07 AC 46 ms
63,552 KB
testcase_08 AC 47 ms
64,716 KB
testcase_09 AC 47 ms
64,764 KB
testcase_10 AC 44 ms
61,172 KB
testcase_11 AC 44 ms
60,808 KB
testcase_12 AC 47 ms
63,204 KB
testcase_13 AC 47 ms
64,960 KB
testcase_14 AC 48 ms
63,548 KB
testcase_15 AC 48 ms
63,956 KB
testcase_16 AC 47 ms
64,148 KB
testcase_17 AC 66 ms
64,088 KB
testcase_18 AC 46 ms
64,236 KB
testcase_19 AC 47 ms
63,892 KB
testcase_20 AC 47 ms
65,064 KB
testcase_21 AC 48 ms
63,960 KB
testcase_22 AC 43 ms
61,056 KB
testcase_23 AC 41 ms
59,760 KB
testcase_24 AC 50 ms
60,544 KB
testcase_25 AC 43 ms
60,056 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 45 ms
61,552 KB
testcase_29 AC 46 ms
62,536 KB
testcase_30 AC 46 ms
64,320 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 OLE -
testcase_47 OLE -
testcase_48 OLE -
testcase_49 OLE -
testcase_50 OLE -
testcase_51 OLE -
testcase_52 OLE -
testcase_53 WA -
testcase_54 OLE -
testcase_55 OLE -
testcase_56 OLE -
testcase_57 OLE -
testcase_58 WA -
testcase_59 WA -
testcase_60 OLE -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 37 ms
52,196 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)
                a_set.add(a)
                print(a_set)
            else:

                print("Yes")
                return
        
        print("No")


        



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