結果

問題 No.3 ビットすごろく
ユーザー da_louisda_louis
提出日時 2020-02-12 23:49:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 385 ms / 5,000 ms
コード長 1,019 bytes
コンパイル時間 14,778 ms
コンパイル使用メモリ 436,460 KB
実行使用メモリ 59,472 KB
最終ジャッジ日時 2024-07-01 09:40:13
合計ジャッジ時間 26,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
56,660 KB
testcase_01 AC 330 ms
56,712 KB
testcase_02 AC 328 ms
56,652 KB
testcase_03 AC 356 ms
57,192 KB
testcase_04 AC 348 ms
57,020 KB
testcase_05 AC 366 ms
59,144 KB
testcase_06 AC 348 ms
57,044 KB
testcase_07 AC 351 ms
57,288 KB
testcase_08 AC 366 ms
57,076 KB
testcase_09 AC 369 ms
59,364 KB
testcase_10 AC 375 ms
59,472 KB
testcase_11 AC 374 ms
59,400 KB
testcase_12 AC 369 ms
59,452 KB
testcase_13 AC 356 ms
57,300 KB
testcase_14 AC 371 ms
59,376 KB
testcase_15 AC 379 ms
53,900 KB
testcase_16 AC 374 ms
53,860 KB
testcase_17 AC 385 ms
53,888 KB
testcase_18 AC 360 ms
52,696 KB
testcase_19 AC 379 ms
53,748 KB
testcase_20 AC 349 ms
52,540 KB
testcase_21 AC 328 ms
52,240 KB
testcase_22 AC 374 ms
53,644 KB
testcase_23 AC 371 ms
53,692 KB
testcase_24 AC 372 ms
53,848 KB
testcase_25 AC 371 ms
53,900 KB
testcase_26 AC 328 ms
52,060 KB
testcase_27 AC 352 ms
52,864 KB
testcase_28 AC 377 ms
53,732 KB
testcase_29 AC 366 ms
53,328 KB
testcase_30 AC 330 ms
52,380 KB
testcase_31 AC 329 ms
52,088 KB
testcase_32 AC 362 ms
53,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:8:52: warning: 'appendln(Any?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
private fun StringBuilder.println(message: Any?) = appendln(message)
                                                   ^

ソースコード

diff #

import java.util.*

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

private inline fun printString(builderAction: StringBuilder.() -> Unit) = print(buildString(builderAction))
private fun StringBuilder.println(message: Any?) = appendln(message)
private fun StringBuilder.print(message: Any?) = append(message)

fun p11() = printString {
    val n = readLine()!!.toInt()

    val distances = IntArray(101010) { -1 }
    val visited = mutableSetOf<Int>()
    val queue = ArrayDeque(listOf(1 to 1))
    fun getMoveDistance(value: Int): Int = Integer.bitCount(value)

    while (queue.isNotEmpty()) {
        val (position, distance) = queue.poll()
        distances[position] = distance

        val move = getMoveDistance(position)
        val left = position - move
        val right = position + move
        if (left in 1..n && visited.add(left)) queue.add(left to distance + 1)
        if (right in 1..n && visited.add(right)) queue.add(right to distance + 1)
    }

    val answer = distances[n]

    println(answer)
}
0