結果

問題 No.740 幻の木
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 16:02:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 12,456 ms
コンパイル使用メモリ 439,864 KB
実行使用メモリ 51,920 KB
最終ジャッジ日時 2024-11-20 16:56:44
合計ジャッジ時間 15,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
51,580 KB
testcase_01 AC 312 ms
51,640 KB
testcase_02 AC 317 ms
51,628 KB
testcase_03 AC 314 ms
51,908 KB
testcase_04 AC 315 ms
51,596 KB
testcase_05 AC 310 ms
51,468 KB
testcase_06 AC 322 ms
51,520 KB
testcase_07 AC 313 ms
51,920 KB
testcase_08 AC 314 ms
51,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (N, M, P, Q) = readLine()!!.split(" ").map { it.toInt() }
    var n = N
    var m = 1

    for (i in 1..Int.MAX_VALUE) {
        if (m in P until P + Q) {
            n -= M
        }
        n -= M

        m += 1
        if (m > 12) {
            m = 1
        }

        if (n <= 0) {
            println(i)
            break
        }
    }
}
0