結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | 👑 obakyan |
提出日時 | 2020-01-19 16:05:27 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 44 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 21:43:33 |
合計ジャッジ時間 | 520 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
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 return cnt + c - b + 1 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