結果

問題 No.388 階段 (1)
ユーザー FoltaFolta
提出日時 2019-05-17 13:45:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 11,819 ms
コンパイル使用メモリ 409,476 KB
実行使用メモリ 53,284 KB
最終ジャッジ日時 2023-08-13 02:10:35
合計ジャッジ時間 17,606 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
52,820 KB
testcase_01 AC 286 ms
52,860 KB
testcase_02 AC 285 ms
52,876 KB
testcase_03 AC 281 ms
52,964 KB
testcase_04 AC 290 ms
52,936 KB
testcase_05 AC 296 ms
52,932 KB
testcase_06 AC 290 ms
52,900 KB
testcase_07 AC 287 ms
53,040 KB
testcase_08 AC 291 ms
53,284 KB
testcase_09 AC 286 ms
52,872 KB
testcase_10 AC 290 ms
52,960 KB
testcase_11 AC 286 ms
52,964 KB
testcase_12 AC 286 ms
52,852 KB
testcase_13 AC 287 ms
52,868 KB
testcase_14 AC 288 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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