結果

問題 No.48 ロボットの操縦
ユーザー FoltaFolta
提出日時 2019-05-27 15:27:31
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 11,520 ms
コンパイル使用メモリ 429,548 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-04-30 20:47:56
合計ジャッジ時間 16,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
54,320 KB
testcase_01 AC 244 ms
54,080 KB
testcase_02 AC 246 ms
54,168 KB
testcase_03 AC 248 ms
54,368 KB
testcase_04 AC 249 ms
54,196 KB
testcase_05 AC 251 ms
54,128 KB
testcase_06 WA -
testcase_07 AC 240 ms
54,272 KB
testcase_08 AC 245 ms
54,308 KB
testcase_09 AC 246 ms
54,180 KB
testcase_10 AC 244 ms
54,300 KB
testcase_11 AC 243 ms
54,428 KB
testcase_12 AC 241 ms
54,268 KB
testcase_13 AC 262 ms
54,216 KB
testcase_14 AC 250 ms
54,276 KB
testcase_15 AC 243 ms
54,256 KB
testcase_16 AC 242 ms
54,328 KB
testcase_17 AC 250 ms
54,344 KB
testcase_18 AC 245 ms
54,116 KB
testcase_19 AC 258 ms
54,200 KB
testcase_20 AC 254 ms
54,284 KB
testcase_21 AC 248 ms
54,308 KB
testcase_22 AC 245 ms
54,148 KB
testcase_23 AC 243 ms
54,264 KB
testcase_24 AC 241 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val x = readLine()!!.toInt()
    val y = readLine()!!.toInt()
    val l = readLine()!!.toInt()
    var cnt = 0
    if(y > 0){
      cnt ++  
    }else if(y < 0){
        cnt += 2
    }
    if(x == 0 && y >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