結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 269 ms
56,820 KB
testcase_02 AC 266 ms
56,740 KB
testcase_03 AC 265 ms
56,760 KB
testcase_04 AC 271 ms
56,876 KB
testcase_05 AC 262 ms
56,800 KB
testcase_06 AC 264 ms
56,748 KB
testcase_07 AC 259 ms
56,748 KB
testcase_08 AC 264 ms
56,752 KB
testcase_09 AC 263 ms
56,804 KB
testcase_10 AC 266 ms
56,768 KB
testcase_11 AC 272 ms
56,864 KB
testcase_12 AC 268 ms
56,988 KB
testcase_13 AC 266 ms
56,824 KB
testcase_14 AC 265 ms
56,924 KB
testcase_15 AC 270 ms
56,776 KB
testcase_16 WA -
testcase_17 AC 265 ms
56,600 KB
testcase_18 AC 269 ms
56,896 KB
testcase_19 AC 261 ms
56,856 KB
testcase_20 AC 257 ms
56,824 KB
testcase_21 AC 267 ms
56,832 KB
testcase_22 AC 262 ms
56,812 KB
testcase_23 AC 265 ms
56,888 KB
testcase_24 AC 266 ms
56,760 KB
testcase_25 AC 271 ms
56,808 KB
testcase_26 AC 263 ms
56,740 KB
testcase_27 AC 262 ms
56,876 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 getAns(a, s, 1) + Math.abs(b-s) + (s - 1)
    }
    return Math.abs(a-s) + s
}
0