結果

問題 No.2672 Subset Xor Sum
ユーザー 👑 KA37RIKA37RI
提出日時 2024-03-16 12:20:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 140,216 KB
最終ジャッジ日時 2024-09-30 03:55:27
合計ジャッジ時間 5,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
64,000 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 43 ms
59,904 KB
testcase_06 AC 43 ms
59,904 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 45 ms
59,776 KB
testcase_11 AC 44 ms
59,904 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 44 ms
59,776 KB
testcase_23 AC 42 ms
59,648 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 69 ms
75,008 KB
testcase_27 AC 68 ms
75,008 KB
testcase_28 AC 44 ms
60,032 KB
testcase_29 AC 45 ms
59,904 KB
testcase_30 WA -
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]

allxor = 0
for ai in a:
  allxor ^= ai
if allxor != 0:
  print("No")
  exit()

ok = [False] * 16384
ok[8192] = True

for ai in a:
  nxt = [False] * 16384
  for x in range(16384):
    nxt[x^ai] = True
    nxt[x&8191] = True
  ok = nxt

print("Yes" if ok[0] else "No")
0