結果

問題 No.388 階段 (1)
ユーザー da_louisda_louis
提出日時 2020-02-07 00:08:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 10,784 ms
コンパイル使用メモリ 433,456 KB
実行使用メモリ 56,936 KB
最終ジャッジ日時 2024-09-25 07:03:45
合計ジャッジ時間 16,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,916 KB
testcase_01 AC 319 ms
56,820 KB
testcase_02 AC 318 ms
56,832 KB
testcase_03 AC 320 ms
56,796 KB
testcase_04 AC 311 ms
56,592 KB
testcase_05 AC 314 ms
56,632 KB
testcase_06 AC 310 ms
56,596 KB
testcase_07 AC 317 ms
56,592 KB
testcase_08 AC 311 ms
56,636 KB
testcase_09 AC 312 ms
56,736 KB
testcase_10 AC 309 ms
56,612 KB
testcase_11 AC 311 ms
56,604 KB
testcase_12 AC 315 ms
56,596 KB
testcase_13 AC 315 ms
56,936 KB
testcase_14 AC 315 ms
56,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p961()
}

fun p961() {
    val (s, f) = readLine()!!.split(' ').map { it.toInt() }

    val answer = s / f + 1

    println(answer)
}
0