結果

問題 No.48 ロボットの操縦
ユーザー FoltaFolta
提出日時 2019-05-27 15:27:31
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 12,421 ms
コンパイル使用メモリ 426,828 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-11-20 18:38:28
合計ジャッジ時間 21,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
54,148 KB
testcase_01 AC 333 ms
54,204 KB
testcase_02 AC 328 ms
54,252 KB
testcase_03 AC 327 ms
54,168 KB
testcase_04 AC 322 ms
54,324 KB
testcase_05 AC 323 ms
54,064 KB
testcase_06 WA -
testcase_07 AC 325 ms
54,272 KB
testcase_08 AC 330 ms
54,156 KB
testcase_09 AC 326 ms
54,152 KB
testcase_10 AC 328 ms
54,288 KB
testcase_11 AC 317 ms
54,160 KB
testcase_12 AC 328 ms
54,268 KB
testcase_13 AC 328 ms
54,116 KB
testcase_14 AC 321 ms
54,060 KB
testcase_15 AC 324 ms
54,088 KB
testcase_16 AC 323 ms
54,264 KB
testcase_17 AC 323 ms
54,064 KB
testcase_18 AC 324 ms
54,428 KB
testcase_19 AC 324 ms
54,244 KB
testcase_20 AC 324 ms
54,324 KB
testcase_21 AC 321 ms
54,328 KB
testcase_22 AC 322 ms
54,376 KB
testcase_23 AC 321 ms
54,296 KB
testcase_24 AC 319 ms
54,260 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