結果

問題 No.388 階段 (1)
ユーザー FoltaFolta
提出日時 2019-05-17 13:45:28
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 9,803 ms
コンパイル使用メモリ 430,092 KB
実行使用メモリ 57,040 KB
最終ジャッジ日時 2024-11-20 18:33:25
合計ジャッジ時間 15,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
56,868 KB
testcase_01 AC 287 ms
56,972 KB
testcase_02 AC 286 ms
56,988 KB
testcase_03 AC 284 ms
56,840 KB
testcase_04 AC 289 ms
56,964 KB
testcase_05 AC 286 ms
56,996 KB
testcase_06 AC 283 ms
56,908 KB
testcase_07 AC 301 ms
56,780 KB
testcase_08 AC 308 ms
57,016 KB
testcase_09 AC 294 ms
57,012 KB
testcase_10 AC 291 ms
57,040 KB
testcase_11 AC 305 ms
56,852 KB
testcase_12 AC 305 ms
56,952 KB
testcase_13 AC 302 ms
56,984 KB
testcase_14 AC 292 ms
56,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val a = readLine()!!.split(" ").map(String::toInt)
    println(a[0] / a[1] + 1)
}
0