結果

問題 No.126 2基のエレベータ
ユーザー バカらっくバカらっく
提出日時 2019-10-02 12:02:48
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 9,924 ms
コンパイル使用メモリ 437,276 KB
実行使用メモリ 56,992 KB
最終ジャッジ日時 2024-10-03 05:58:27
合計ジャッジ時間 19,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
56,828 KB
testcase_01 WA -
testcase_02 AC 275 ms
56,824 KB
testcase_03 AC 278 ms
56,956 KB
testcase_04 AC 265 ms
56,788 KB
testcase_05 AC 262 ms
56,836 KB
testcase_06 AC 262 ms
56,872 KB
testcase_07 WA -
testcase_08 AC 270 ms
56,768 KB
testcase_09 AC 258 ms
56,868 KB
testcase_10 AC 266 ms
56,904 KB
testcase_11 AC 265 ms
56,860 KB
testcase_12 AC 267 ms
56,724 KB
testcase_13 AC 263 ms
56,784 KB
testcase_14 AC 288 ms
56,748 KB
testcase_15 AC 273 ms
56,748 KB
testcase_16 AC 267 ms
56,876 KB
testcase_17 AC 264 ms
56,832 KB
testcase_18 AC 275 ms
56,840 KB
testcase_19 AC 267 ms
56,876 KB
testcase_20 AC 266 ms
56,868 KB
testcase_21 AC 282 ms
56,868 KB
testcase_22 AC 282 ms
56,960 KB
testcase_23 AC 275 ms
56,824 KB
testcase_24 AC 269 ms
56,772 KB
testcase_25 AC 268 ms
56,760 KB
testcase_26 AC 275 ms
56,748 KB
testcase_27 AC 269 ms
56,768 KB
testcase_28 AC 265 ms
56,864 KB
testcase_29 AC 275 ms
56,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val (a,b,s) = readLine()!!.split(" ").map { it.toInt() }
    println(getAns(a,b,s))
}

fun getAns(a:Int, b:Int, s:Int):Int {
    if(s == 1) {
        if(a == 0) {
            return 2
        } else {
            return a
        }
    }
    if(Math.abs(a-s) > Math.abs(b-s)) {
        return Math.min(getAns(a, 1, 1) + Math.abs(b-s) + Math.abs(s - 1), Math.abs(b-s) + Math.abs(s-a) + a)
    }
    return Math.abs(a-s) + s
}
0