結果

問題 No.193 筒の数式
ユーザー 👑 obakyanobakyan
提出日時 2019-04-26 09:23:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 898 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 22:35:27
合計ジャッジ時間 981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 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 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local str = io.read()
local n = #str
local sstr = ""

local function parse(a)
  local sum = 0
  local flg = 1
  if(a:sub(n, n) == "+" or a:sub(n, n) == "-") then return false, 0 end
  if(a:sub(1, 1) == "+" or a:sub(1, 1) == "-") then return false, 0 end
  local pos = 1
  local va = 0
  while(pos ~= nil) do
    st, ed = a:find("%d+", pos)
    if(st == nil) then pos = nil
    else
      va = tonumber(a:sub(st, ed))
      sum = sum + flg * va
      if(ed == n) then pos = nil
      else
        if(a:sub(ed + 1, ed + 1) == "+") then flg = 1 else flg = -1 end
        pos = ed + 2
      end
    end
  end
  return true, sum
end

local xma = nil
for ofst = 0, n - 1 do
  if(0 < ofst) then sstr = str:sub(ofst + 1, n) .. str:sub(1, ofst)
  else sstr = str end
  local ret1, ret2 = parse(sstr)
  if(ret1) then
    if(xma == nil) then xma = ret2 else xma = math.max(xma, ret2) end
  end
end
print(xma)
0