結果

問題 No.966 引き算をして門松列(その1)
ユーザー 👑 obakyanobakyan
提出日時 2020-01-19 16:07:00
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 26 ms
コンパイル使用メモリ 5,216 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-15 20:01:11
合計ジャッジ時間 622 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 10 ms
4,376 KB
testcase_05 AC 10 ms
4,376 KB
testcase_06 AC 14 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local q = io.read("*n")
local function solve(a, b, c)
  local cnt = 0
  if a == c then
    if a == 1 then return -1
    else
      a = a - 1
      cnt = cnt + 1
    end
  elseif c < a then
    a, c = c, a
  end
  if b < a then
    return cnt
  elseif a == b then
    if b == 1 then return -1
    else return cnt + 1
    end
  elseif b <= c then
    if 2 <= b - a then
      local cand = c - b + 1
      if 1 < a then cand = math.min(cand, b - a + 1) end
      return cnt + cand
    else
      if a == 1 then return -1
      else
        return cnt + b - a + 1
      end
    end
  else
    return cnt
  end
  return cnt
end
for i = 1, q do
  local a, b, c = io.read("*n", "*n", "*n")
  print(solve(a, b, c))
end
0