結果

問題 No.1465 Archaea
ユーザー バカらっくバカらっく
提出日時 2023-01-26 22:14:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 11,928 ms
コンパイル使用メモリ 437,600 KB
実行使用メモリ 84,900 KB
最終ジャッジ日時 2024-06-27 13:07:28
合計ジャッジ時間 21,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
60,204 KB
testcase_01 AC 315 ms
60,264 KB
testcase_02 AC 323 ms
60,440 KB
testcase_03 AC 315 ms
60,384 KB
testcase_04 AC 317 ms
60,276 KB
testcase_05 AC 319 ms
60,252 KB
testcase_06 AC 316 ms
60,192 KB
testcase_07 AC 389 ms
67,884 KB
testcase_08 AC 318 ms
60,292 KB
testcase_09 AC 420 ms
71,864 KB
testcase_10 AC 314 ms
60,276 KB
testcase_11 AC 403 ms
70,124 KB
testcase_12 AC 320 ms
60,320 KB
testcase_13 AC 445 ms
79,856 KB
testcase_14 AC 429 ms
71,180 KB
testcase_15 AC 321 ms
60,256 KB
testcase_16 AC 326 ms
60,328 KB
testcase_17 AC 430 ms
83,656 KB
testcase_18 AC 343 ms
62,544 KB
testcase_19 AC 433 ms
70,900 KB
testcase_20 AC 425 ms
77,764 KB
testcase_21 AC 449 ms
84,772 KB
testcase_22 AC 457 ms
84,900 KB
testcase_23 AC 316 ms
60,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.LinkedList

fun main(args: Array<String>) {
    val (n,k) = readLine()!!.split(" ").map { it.toInt() }
    val stetps = arrayOfNulls<Int>(n+1)
    val queue = LinkedList<Int>()
    queue.add(1)
    stetps[1] = 0
    while (queue.isNotEmpty()) {
        val cur = queue.pop()
        val nextStep = stetps[cur]!! + 1
        val nextList = listOf(cur*2, cur+3).filter { it <= n }
        for(next in nextList) {
            if(stetps[next] == null || stetps[next]!! > nextStep) {
                stetps[next] = nextStep
                queue.add(next)
            }
        }
    }
    println(if((stetps[n] ?: (k + 1)) > k) "NO" else "YES")
}
0