結果

問題 No.46 はじめのn歩
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 19:27:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 327 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 11,392 ms
コンパイル使用メモリ 433,948 KB
実行使用メモリ 51,960 KB
最終ジャッジ日時 2024-11-20 08:21:01
合計ジャッジ時間 15,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
51,752 KB
testcase_01 AC 322 ms
51,736 KB
testcase_02 AC 327 ms
51,592 KB
testcase_03 AC 325 ms
51,736 KB
testcase_04 AC 325 ms
51,584 KB
testcase_05 AC 316 ms
51,828 KB
testcase_06 AC 323 ms
51,712 KB
testcase_07 AC 325 ms
51,816 KB
testcase_08 AC 323 ms
51,604 KB
testcase_09 AC 325 ms
51,960 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