結果

問題 No.46 はじめのn歩
ユーザー face4face4
提出日時 2019-12-07 15:19:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 14,619 ms
コンパイル使用メモリ 411,052 KB
実行使用メモリ 53,140 KB
最終ジャッジ日時 2023-08-26 19:16:52
合計ジャッジ時間 18,112 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
52,920 KB
testcase_01 AC 260 ms
52,884 KB
testcase_02 AC 260 ms
52,784 KB
testcase_03 AC 259 ms
53,140 KB
testcase_04 AC 264 ms
53,028 KB
testcase_05 AC 262 ms
52,916 KB
testcase_06 AC 268 ms
52,996 KB
testcase_07 AC 280 ms
53,068 KB
testcase_08 AC 268 ms
52,944 KB
testcase_09 AC 264 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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