結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | 👑 obakyan |
提出日時 | 2020-01-19 16:07:00 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | AC | 8 ms
6,940 KB |
testcase_06 | AC | 9 ms
6,940 KB |
ソースコード
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