結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー 👑 obakyanobakyan
提出日時 2021-07-26 22:12:09
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 787 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 110,676 KB
最終ジャッジ日時 2024-07-22 13:13:49
合計ジャッジ時間 82,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3,944 ms
89,976 KB
testcase_09 AC 757 ms
20,096 KB
testcase_10 AC 3,108 ms
59,268 KB
testcase_11 AC 2,089 ms
47,716 KB
testcase_12 AC 4,619 ms
93,164 KB
testcase_13 TLE -
testcase_14 AC 2,795 ms
56,916 KB
testcase_15 TLE -
testcase_16 AC 4,603 ms
92,088 KB
testcase_17 AC 4,939 ms
100,472 KB
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 790 ms
99,328 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

local ffi = require("ffi")
local C = ffi.C
ffi.cdef[[
long long atoll(const char*);
]]

local function lltonumber(str)
  return C.atoll(str)
end

local n = io.read("*n", "*l")
local str = io.read()
local a = {}
for w in str:gmatch("%d+") do
  table.insert(a, lltonumber(w))
end
local ret = 1LL
local t = {}
for i = 1, n do
  t[i] = {}
  local ai = a[i]
  for j = 1, 60 do
    t[i][j] = ai % 2LL == 1LL
    ai = ai / 2LL
  end
end
for j = 1, 60 do
  for i = 1, n do
    if t[i][j] then
      ret = ret + ret
      for k = i + 1, n do
        for l = j, 60 do
          if t[i][l] then
            t[k][l] = not t[k][l]
          end
        end
      end
      for k = j, 60 do
        t[i][k] = false
      end
      break
    end
  end
end
ret = tostring(ret):gsub("LL", "")
print(ret)
0