結果

問題 No.46 はじめのn歩
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 19:27:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 10,891 ms
コンパイル使用メモリ 426,200 KB
実行使用メモリ 57,156 KB
最終ジャッジ日時 2024-04-30 13:12:27
合計ジャッジ時間 15,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
57,000 KB
testcase_01 AC 319 ms
57,000 KB
testcase_02 AC 312 ms
57,048 KB
testcase_03 AC 317 ms
57,028 KB
testcase_04 AC 318 ms
57,000 KB
testcase_05 AC 315 ms
57,156 KB
testcase_06 AC 314 ms
57,012 KB
testcase_07 AC 317 ms
57,092 KB
testcase_08 AC 312 ms
57,000 KB
testcase_09 AC 309 ms
57,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (a, b) = readLine()!!.split(" ").map{ x -> x.toDouble() }
  println(Math.ceil(b/a).toInt() )
}
0