結果

問題 No.46 はじめのn歩
ユーザー minokasagominokasago
提出日時 2019-11-01 09:15:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 11,177 ms
コンパイル使用メモリ 430,640 KB
実行使用メモリ 51,836 KB
最終ジャッジ日時 2024-09-14 22:17:51
合計ジャッジ時間 15,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
51,764 KB
testcase_01 AC 318 ms
51,836 KB
testcase_02 AC 308 ms
51,736 KB
testcase_03 AC 312 ms
51,540 KB
testcase_04 AC 307 ms
51,612 KB
testcase_05 AC 315 ms
51,728 KB
testcase_06 AC 319 ms
51,404 KB
testcase_07 AC 315 ms
51,556 KB
testcase_08 AC 320 ms
51,592 KB
testcase_09 AC 315 ms
51,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val (a, b) = readLine()!!.split(" ").map(String::toInt)

    val ans = (b + (a - 1)) / a

    println("${ans}")
}
0