結果

問題 No.46 はじめのn歩
ユーザー FoltaFolta
提出日時 2019-05-17 13:37:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 12,595 ms
コンパイル使用メモリ 433,312 KB
実行使用メモリ 51,984 KB
最終ジャッジ日時 2024-11-20 18:32:33
合計ジャッジ時間 14,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
51,620 KB
testcase_01 AC 314 ms
51,520 KB
testcase_02 AC 317 ms
51,784 KB
testcase_03 AC 321 ms
51,892 KB
testcase_04 AC 315 ms
51,492 KB
testcase_05 AC 314 ms
51,712 KB
testcase_06 AC 315 ms
51,588 KB
testcase_07 AC 315 ms
51,884 KB
testcase_08 AC 320 ms
51,984 KB
testcase_09 AC 316 ms
51,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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