結果

問題 No.46 はじめのn歩
ユーザー バカらっくバカらっく
提出日時 2019-09-09 18:24:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 197 bytes
コンパイル時間 12,457 ms
コンパイル使用メモリ 436,132 KB
実行使用メモリ 51,964 KB
最終ジャッジ日時 2024-06-28 12:58:59
合計ジャッジ時間 15,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
51,844 KB
testcase_01 AC 307 ms
51,744 KB
testcase_02 AC 310 ms
51,780 KB
testcase_03 AC 314 ms
51,940 KB
testcase_04 AC 318 ms
51,964 KB
testcase_05 AC 320 ms
51,816 KB
testcase_06 AC 317 ms
51,916 KB
testcase_07 AC 315 ms
51,920 KB
testcase_08 AC 319 ms
51,948 KB
testcase_09 AC 312 ms
51,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val (oneStep, total) = readLine()!!.split(" ").map { it.toLong() }
    val ans = total / oneStep + (if (total % oneStep == 0.toLong()) 0 else 1)
    print(ans)
}

0