結果

問題 No.2672 Subset Xor Sum
ユーザー 👑 rin204rin204
提出日時 2024-03-15 21:28:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 146,572 KB
最終ジャッジ日時 2024-09-30 00:24:00
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 32 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 32 ms
51,840 KB
testcase_09 AC 32 ms
51,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 33 ms
51,584 KB
testcase_14 AC 33 ms
52,224 KB
testcase_15 AC 34 ms
51,584 KB
testcase_16 AC 33 ms
51,584 KB
testcase_17 AC 33 ms
51,456 KB
testcase_18 AC 33 ms
51,968 KB
testcase_19 AC 33 ms
51,840 KB
testcase_20 AC 33 ms
51,712 KB
testcase_21 AC 32 ms
51,584 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 34 ms
51,584 KB
testcase_25 AC 34 ms
51,456 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 31 ms
51,584 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 AC 127 ms
120,320 KB
testcase_42 AC 175 ms
128,040 KB
testcase_43 AC 151 ms
114,520 KB
testcase_44 AC 198 ms
146,572 KB
testcase_45 AC 143 ms
112,396 KB
testcase_46 AC 39 ms
59,392 KB
testcase_47 WA -
testcase_48 AC 36 ms
59,264 KB
testcase_49 AC 36 ms
59,392 KB
testcase_50 AC 37 ms
59,264 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 37 ms
59,776 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 33 ms
52,224 KB
testcase_60 AC 35 ms
58,880 KB
testcase_61 AC 37 ms
58,624 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 33 ms
52,224 KB
testcase_67 AC 32 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort(reverse=True)
if A[0] == 0:
    print("Yes")
    exit()
while A[-1] == 0:
    A.pop()
B = []
for a in A:
    for b in B:
        a = min(a, a ^ b)
    if a == 0:
        print("Yes")
        exit()

print("No")
0