結果

問題 No.46 はじめのn歩
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 00:35:51
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 11,041 ms
コンパイル使用メモリ 411,728 KB
実行使用メモリ 53,320 KB
最終ジャッジ日時 2023-10-13 06:07:51
合計ジャッジ時間 14,935 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 284 ms
52,996 KB
testcase_02 WA -
testcase_03 AC 280 ms
53,112 KB
testcase_04 AC 282 ms
52,940 KB
testcase_05 AC 281 ms
53,112 KB
testcase_06 WA -
testcase_07 AC 276 ms
53,084 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (s, d) = readLine()!!.split(" ").map{it.toInt()}
    println((0.0+d/s).toInt()+1)
}
0