結果
問題 |
No.966 引き算をして門松列(その1)
|
ユーザー |
👑 |
提出日時 | 2020-01-19 16:07:00 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 711 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 21:43:30 |
合計ジャッジ時間 | 509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 |
ソースコード
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