結果

問題 No.3 ビットすごろく
ユーザー バカらっくバカらっく
提出日時 2019-08-29 06:46:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,188 ms / 5,000 ms
コード長 876 bytes
コンパイル時間 13,722 ms
コンパイル使用メモリ 445,676 KB
実行使用メモリ 87,612 KB
最終ジャッジ日時 2024-07-01 09:30:53
合計ジャッジ時間 37,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
59,844 KB
testcase_01 AC 323 ms
59,856 KB
testcase_02 AC 319 ms
59,792 KB
testcase_03 AC 442 ms
87,224 KB
testcase_04 AC 394 ms
69,196 KB
testcase_05 AC 614 ms
86,908 KB
testcase_06 AC 450 ms
87,388 KB
testcase_07 AC 410 ms
87,540 KB
testcase_08 AC 530 ms
87,208 KB
testcase_09 AC 788 ms
86,888 KB
testcase_10 AC 947 ms
87,260 KB
testcase_11 AC 739 ms
86,836 KB
testcase_12 AC 606 ms
87,184 KB
testcase_13 AC 424 ms
87,212 KB
testcase_14 AC 904 ms
87,140 KB
testcase_15 AC 1,160 ms
87,424 KB
testcase_16 AC 1,067 ms
87,136 KB
testcase_17 AC 1,154 ms
87,220 KB
testcase_18 AC 413 ms
87,384 KB
testcase_19 AC 1,184 ms
87,256 KB
testcase_20 AC 375 ms
62,272 KB
testcase_21 AC 326 ms
59,832 KB
testcase_22 AC 916 ms
87,188 KB
testcase_23 AC 1,188 ms
87,584 KB
testcase_24 AC 1,174 ms
87,612 KB
testcase_25 AC 1,175 ms
87,376 KB
testcase_26 AC 326 ms
59,784 KB
testcase_27 AC 436 ms
87,456 KB
testcase_28 AC 1,038 ms
87,508 KB
testcase_29 AC 740 ms
87,084 KB
testcase_30 AC 329 ms
60,152 KB
testcase_31 AC 337 ms
59,852 KB
testcase_32 AC 671 ms
87,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>){
    val boxCount = readLine()!!.toInt()
    val box = arrayOfNulls<Int>(boxCount+1)
    val move = box.indices.map { it.toString(2).count { it == '1' }}

    val que = LinkedList<Task>()
    que.push(Task(1, 1))

    while (que.isNotEmpty()) {
        val task = que.pop()
        if(task.pos <= 0) {
            continue
        }
        if(task.pos > boxCount) {
            continue
        }
        if(box[task.pos] == null || box[task.pos]!! > task.step) {
            box[task.pos] = task.step
        } else {
            continue
        }
        que.push(Task(task.pos + move[task.pos], task.step + 1))
        que.push(Task(task.pos - move[task.pos], task.step + 1))
    }
    box[boxCount]?.also {
        println(box[boxCount])
    } ?: run {
        println(-1)
    }
}

class Task(val pos:Int, val step:Int)
0