結果

問題 No.48 ロボットの操縦
ユーザー FoltaFolta
提出日時 2019-05-27 15:50:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 12,143 ms
コンパイル使用メモリ 427,108 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-11-20 18:39:26
合計ジャッジ時間 19,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
54,192 KB
testcase_01 AC 288 ms
54,192 KB
testcase_02 AC 285 ms
54,072 KB
testcase_03 AC 288 ms
54,276 KB
testcase_04 AC 291 ms
54,160 KB
testcase_05 AC 294 ms
54,264 KB
testcase_06 AC 292 ms
54,248 KB
testcase_07 AC 290 ms
54,272 KB
testcase_08 AC 292 ms
54,176 KB
testcase_09 AC 290 ms
54,272 KB
testcase_10 AC 292 ms
54,172 KB
testcase_11 AC 287 ms
54,076 KB
testcase_12 AC 288 ms
54,152 KB
testcase_13 AC 293 ms
54,220 KB
testcase_14 AC 288 ms
54,288 KB
testcase_15 AC 289 ms
54,272 KB
testcase_16 AC 288 ms
54,304 KB
testcase_17 AC 294 ms
54,184 KB
testcase_18 AC 293 ms
54,152 KB
testcase_19 AC 291 ms
54,172 KB
testcase_20 AC 289 ms
54,140 KB
testcase_21 AC 292 ms
54,256 KB
testcase_22 AC 293 ms
54,248 KB
testcase_23 AC 293 ms
54,156 KB
testcase_24 AC 293 ms
54,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val x = readLine()!!.toInt()
    val y = readLine()!!.toInt()
    val l = readLine()!!.toInt()
    var cnt = 0
    if(y < 0){
        cnt += 2
    }else if(x != 0){
      cnt ++  
    }
    cnt += Math.abs(x) / l
    if(x % l != 0) cnt++
    cnt += Math.abs(y) / l
    if(y % l != 0) cnt++
    println(cnt)
}
0