結果

問題 No.48 ロボットの操縦
ユーザー komkomhkomkomh
提出日時 2019-04-20 08:51:14
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 12,574 ms
コンパイル使用メモリ 426,232 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-11-20 18:01:11
合計ジャッジ時間 16,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
54,268 KB
testcase_01 AC 259 ms
54,160 KB
testcase_02 WA -
testcase_03 AC 246 ms
54,248 KB
testcase_04 AC 244 ms
54,184 KB
testcase_05 AC 248 ms
54,160 KB
testcase_06 AC 249 ms
54,188 KB
testcase_07 AC 248 ms
54,256 KB
testcase_08 AC 244 ms
54,188 KB
testcase_09 AC 253 ms
54,160 KB
testcase_10 AC 245 ms
54,252 KB
testcase_11 AC 264 ms
54,260 KB
testcase_12 AC 243 ms
54,152 KB
testcase_13 AC 249 ms
54,084 KB
testcase_14 AC 257 ms
54,172 KB
testcase_15 AC 252 ms
54,152 KB
testcase_16 AC 247 ms
54,256 KB
testcase_17 AC 264 ms
54,268 KB
testcase_18 AC 269 ms
54,156 KB
testcase_19 AC 250 ms
54,068 KB
testcase_20 AC 262 ms
54,296 KB
testcase_21 AC 251 ms
54,120 KB
testcase_22 AC 246 ms
54,296 KB
testcase_23 AC 246 ms
54,272 KB
testcase_24 AC 253 ms
54,156 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 (y < 0) {
        count++
    }

    if (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