結果

問題 No.48 ロボットの操縦
ユーザー komkomhkomkomh
提出日時 2019-04-20 09:16:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 345 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 10,258 ms
コンパイル使用メモリ 431,556 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-11-20 18:03:04
合計ジャッジ時間 18,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,252 KB
testcase_01 AC 298 ms
54,156 KB
testcase_02 AC 296 ms
54,248 KB
testcase_03 AC 294 ms
54,276 KB
testcase_04 AC 291 ms
54,276 KB
testcase_05 AC 295 ms
54,256 KB
testcase_06 AC 295 ms
54,276 KB
testcase_07 AC 294 ms
54,148 KB
testcase_08 AC 306 ms
54,168 KB
testcase_09 AC 297 ms
54,056 KB
testcase_10 AC 290 ms
54,296 KB
testcase_11 AC 293 ms
54,252 KB
testcase_12 AC 293 ms
54,260 KB
testcase_13 AC 303 ms
54,172 KB
testcase_14 AC 295 ms
54,064 KB
testcase_15 AC 290 ms
54,312 KB
testcase_16 AC 291 ms
54,296 KB
testcase_17 AC 288 ms
54,172 KB
testcase_18 AC 290 ms
54,164 KB
testcase_19 AC 345 ms
54,168 KB
testcase_20 AC 302 ms
54,076 KB
testcase_21 AC 298 ms
54,304 KB
testcase_22 AC 292 ms
54,124 KB
testcase_23 AC 289 ms
54,160 KB
testcase_24 AC 292 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

import kotlin.math.absoluteValue

fun main() {
    val x = readLine()!!.toInt()
    val y = readLine()!!.toInt()
    val l = readLine()!!.toInt()

    var count = 0 // 回数
    if (x != 0) count++
    if (y < 0) count ++
    if (y < 0 && x == 0) count++

    count += y.absoluteValue / l // 高速
    if (y.absoluteValue % l > 0) {
        count++ // 残り
    }
    count += x.absoluteValue / l // 高速
    if (x.absoluteValue % l > 0) {
        count++ // 残り
    }
    println(count)
}
0