結果

問題 No.388 階段 (1)
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:43:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 10,963 ms
コンパイル使用メモリ 434,164 KB
実行使用メモリ 52,008 KB
最終ジャッジ日時 2024-09-25 06:07:14
合計ジャッジ時間 16,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
51,632 KB
testcase_01 AC 311 ms
51,696 KB
testcase_02 AC 309 ms
52,000 KB
testcase_03 AC 302 ms
51,848 KB
testcase_04 AC 305 ms
51,964 KB
testcase_05 AC 305 ms
51,680 KB
testcase_06 AC 307 ms
51,820 KB
testcase_07 AC 301 ms
51,688 KB
testcase_08 AC 305 ms
52,008 KB
testcase_09 AC 302 ms
51,696 KB
testcase_10 AC 301 ms
51,812 KB
testcase_11 AC 303 ms
51,876 KB
testcase_12 AC 303 ms
51,668 KB
testcase_13 AC 307 ms
51,920 KB
testcase_14 AC 316 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){val(s,f)=readLine()!!.split(" ").map{it.toDouble()}
println(kotlin.math.floor(s/f).toInt()+1)}
0