結果

問題 No.46 はじめのn歩
ユーザー Pump0129Pump0129
提出日時 2018-04-05 02:08:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 306 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 10,190 ms
コンパイル使用メモリ 427,548 KB
実行使用メモリ 51,096 KB
最終ジャッジ日時 2024-11-20 15:19:00
合計ジャッジ時間 14,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
50,972 KB
testcase_01 AC 303 ms
51,064 KB
testcase_02 AC 302 ms
51,008 KB
testcase_03 AC 300 ms
50,756 KB
testcase_04 AC 302 ms
50,804 KB
testcase_05 AC 302 ms
50,780 KB
testcase_06 AC 301 ms
51,056 KB
testcase_07 AC 300 ms
50,964 KB
testcase_08 AC 302 ms
51,096 KB
testcase_09 AC 306 ms
50,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val line = readLine()!!.split(" ")
    val i = line[0].toDouble()
    val j = line[1].toDouble()

    println(Math.ceil(j / i).toInt())
}
0