結果

問題 No.388 階段 (1)
ユーザー FoltaFolta
提出日時 2019-05-17 13:45:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 11,752 ms
コンパイル使用メモリ 431,268 KB
実行使用メモリ 57,012 KB
最終ジャッジ日時 2024-04-30 20:42:56
合計ジャッジ時間 17,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
56,952 KB
testcase_01 AC 317 ms
56,980 KB
testcase_02 AC 321 ms
56,968 KB
testcase_03 AC 324 ms
56,808 KB
testcase_04 AC 323 ms
56,828 KB
testcase_05 AC 327 ms
56,936 KB
testcase_06 AC 331 ms
56,996 KB
testcase_07 AC 318 ms
56,808 KB
testcase_08 AC 318 ms
56,904 KB
testcase_09 AC 323 ms
56,872 KB
testcase_10 AC 323 ms
56,908 KB
testcase_11 AC 320 ms
56,984 KB
testcase_12 AC 321 ms
56,848 KB
testcase_13 AC 319 ms
57,012 KB
testcase_14 AC 324 ms
56,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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