結果

問題 No.48 ロボットの操縦
ユーザー FoltaFolta
提出日時 2019-05-27 15:50:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 11,598 ms
コンパイル使用メモリ 424,420 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-04-30 20:48:52
合計ジャッジ時間 16,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
54,264 KB
testcase_01 AC 258 ms
54,284 KB
testcase_02 AC 254 ms
54,052 KB
testcase_03 AC 243 ms
54,164 KB
testcase_04 AC 246 ms
54,364 KB
testcase_05 AC 255 ms
54,316 KB
testcase_06 AC 243 ms
54,124 KB
testcase_07 AC 242 ms
54,080 KB
testcase_08 AC 242 ms
54,224 KB
testcase_09 AC 244 ms
54,280 KB
testcase_10 AC 239 ms
54,156 KB
testcase_11 AC 238 ms
54,252 KB
testcase_12 AC 238 ms
54,312 KB
testcase_13 AC 239 ms
54,400 KB
testcase_14 AC 240 ms
54,296 KB
testcase_15 AC 240 ms
54,316 KB
testcase_16 AC 242 ms
54,168 KB
testcase_17 AC 241 ms
54,296 KB
testcase_18 AC 241 ms
54,336 KB
testcase_19 AC 240 ms
54,260 KB
testcase_20 AC 239 ms
54,304 KB
testcase_21 AC 241 ms
54,172 KB
testcase_22 AC 262 ms
54,300 KB
testcase_23 AC 246 ms
54,212 KB
testcase_24 AC 250 ms
54,172 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