結果

問題 No.2672 Subset Xor Sum
ユーザー 👑 obakyanobakyan
提出日時 2024-11-10 13:24:03
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-11-10 13:24:09
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 92 ms
6,784 KB
testcase_32 AC 36 ms
5,248 KB
testcase_33 AC 31 ms
5,248 KB
testcase_34 AC 63 ms
6,912 KB
testcase_35 AC 87 ms
6,784 KB
testcase_36 AC 73 ms
6,912 KB
testcase_37 AC 83 ms
6,784 KB
testcase_38 AC 42 ms
5,248 KB
testcase_39 AC 95 ms
6,784 KB
testcase_40 AC 19 ms
5,248 KB
testcase_41 AC 59 ms
6,784 KB
testcase_42 AC 85 ms
6,784 KB
testcase_43 AC 75 ms
6,912 KB
testcase_44 AC 97 ms
6,784 KB
testcase_45 AC 62 ms
6,912 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 3 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 3 ms
5,248 KB
testcase_51 AC 3 ms
5,248 KB
testcase_52 AC 3 ms
5,248 KB
testcase_53 AC 3 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 3 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 3 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 WA -
testcase_67 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local bxor = bit.bxor
local n = io.read("*n")
local a = {}
local v = 0
for i = 1, n do
  a[i] = io.read("*n")
  v = bxor(v, a[i])
end
if 0 < v then
  print("No") os.exit()
end
for i = 1, n do
  if a[i] == 0 then
    print("Yes") os.exit()
  end
end
local map = {}
for i = 1, n do
  if map[a[i]] then
    print("Yes") os.exit()
  end
  map[a[i]] = true
end
local t = {}
t[0] = true
v = 0
for key, val in pairs(map) do
  if not next(map, key) then break end
  v = bxor(v, key)
  if t[v] then
    print("Yes") os.exit()
  end
  t[v] = true
end
print("No")
0