結果

問題 No.46 はじめのn歩
ユーザー FoltaFolta
提出日時 2019-05-17 13:37:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 11,105 ms
コンパイル使用メモリ 430,096 KB
実行使用メモリ 57,080 KB
最終ジャッジ日時 2024-04-30 20:42:06
合計ジャッジ時間 15,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
57,032 KB
testcase_01 AC 307 ms
56,908 KB
testcase_02 AC 311 ms
56,960 KB
testcase_03 AC 309 ms
56,948 KB
testcase_04 AC 308 ms
56,840 KB
testcase_05 AC 306 ms
57,080 KB
testcase_06 AC 308 ms
56,848 KB
testcase_07 AC 309 ms
57,020 KB
testcase_08 AC 309 ms
56,960 KB
testcase_09 AC 304 ms
56,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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