結果

問題 No.48 ロボットの操縦
ユーザー kotakota
提出日時 2022-05-18 15:04:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 12,859 ms
コンパイル使用メモリ 433,104 KB
実行使用メモリ 49,888 KB
最終ジャッジ日時 2024-09-16 16:16:06
合計ジャッジ時間 21,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
49,888 KB
testcase_01 AC 283 ms
49,568 KB
testcase_02 AC 288 ms
49,744 KB
testcase_03 AC 285 ms
49,796 KB
testcase_04 AC 286 ms
49,540 KB
testcase_05 AC 286 ms
49,788 KB
testcase_06 AC 287 ms
49,776 KB
testcase_07 AC 288 ms
49,888 KB
testcase_08 AC 291 ms
49,560 KB
testcase_09 AC 294 ms
49,784 KB
testcase_10 AC 295 ms
49,860 KB
testcase_11 AC 294 ms
49,856 KB
testcase_12 AC 291 ms
49,708 KB
testcase_13 AC 291 ms
49,880 KB
testcase_14 AC 288 ms
49,656 KB
testcase_15 AC 294 ms
49,436 KB
testcase_16 AC 291 ms
49,456 KB
testcase_17 AC 290 ms
49,648 KB
testcase_18 AC 284 ms
49,564 KB
testcase_19 AC 291 ms
49,812 KB
testcase_20 AC 283 ms
49,800 KB
testcase_21 AC 287 ms
49,588 KB
testcase_22 AC 286 ms
49,752 KB
testcase_23 AC 285 ms
49,756 KB
testcase_24 AC 289 ms
49,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    var count = 0.0
    if (y >= 0) {
        count += Math.ceil(y / l)
        if (x != 0.0) {
            count += (1 + Math.ceil(Math.abs(x) / l))
        }
    } else if (y < 0) {
        count += (1 + Math.ceil(Math.abs(x) / l))
        if (y != 0.0) {
            count += (1 + Math.ceil(Math.abs(y) / l))
        }
    }
    println(count.toInt())
}
0