結果

問題 No.46 はじめのn歩
ユーザー face4face4
提出日時 2019-12-07 15:19:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 13,090 ms
コンパイル使用メモリ 431,064 KB
実行使用メモリ 56,924 KB
最終ジャッジ日時 2024-06-07 14:47:56
合計ジャッジ時間 17,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
56,852 KB
testcase_01 AC 314 ms
56,772 KB
testcase_02 AC 311 ms
56,708 KB
testcase_03 AC 314 ms
56,788 KB
testcase_04 AC 316 ms
56,716 KB
testcase_05 AC 312 ms
56,836 KB
testcase_06 AC 316 ms
56,924 KB
testcase_07 AC 318 ms
56,720 KB
testcase_08 AC 312 ms
56,732 KB
testcase_09 AC 317 ms
56,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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