結果

問題 No.838 Noelちゃんと星々3
ユーザー rutilicusrutilicus
提出日時 2020-11-03 10:07:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 13,441 ms
コンパイル使用メモリ 444,840 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-07-22 08:43:19
合計ジャッジ時間 25,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
77,652 KB
testcase_01 AC 679 ms
77,548 KB
testcase_02 AC 627 ms
77,688 KB
testcase_03 AC 626 ms
77,644 KB
testcase_04 AC 632 ms
77,660 KB
testcase_05 AC 315 ms
60,404 KB
testcase_06 AC 311 ms
60,356 KB
testcase_07 AC 307 ms
60,356 KB
testcase_08 AC 304 ms
60,408 KB
testcase_09 AC 303 ms
60,412 KB
testcase_10 AC 297 ms
60,452 KB
testcase_11 AC 311 ms
60,540 KB
testcase_12 AC 328 ms
60,456 KB
testcase_13 AC 317 ms
60,572 KB
testcase_14 AC 303 ms
60,360 KB
testcase_15 AC 310 ms
60,520 KB
testcase_16 AC 300 ms
60,400 KB
testcase_17 AC 305 ms
60,312 KB
testcase_18 AC 312 ms
60,356 KB
testcase_19 AC 308 ms
60,276 KB
testcase_20 AC 309 ms
60,336 KB
testcase_21 AC 305 ms
60,304 KB
testcase_22 AC 306 ms
60,412 KB
testcase_23 AC 299 ms
60,224 KB
testcase_24 AC 312 ms
60,332 KB
testcase_25 AC 309 ms
60,344 KB
testcase_26 AC 307 ms
60,320 KB
testcase_27 AC 313 ms
60,420 KB
testcase_28 AC 305 ms
60,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:13:22: warning: 'appendln(Long): 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.
        2 -> builder.appendln(ys[1] - ys[0])
                     ^
Main.kt:14:22: warning: 'appendln(Long): 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.
        3 -> builder.appendln(ys[2] - ys[0])
                     ^
Main.kt:23:21: warning: 'appendln(Long): 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.
            builder.appendln(dp[n - 1])
                    ^

ソースコード

diff #

import kotlin.math.min

fun main() {
    val builder = StringBuilder()

    // 解説読んだ
    val n = readInputLine().toInt()

    val ys = readInputLine().split(" ").map { it.toLong() }.toLongArray()
    ys.sort()

    when(n) {
        2 -> builder.appendln(ys[1] - ys[0])
        3 -> builder.appendln(ys[2] - ys[0])
        else -> {
            val dp = LongArray(n)
            dp[0] = 1_000_000_000_000L
            dp[1] = ys[1] - ys[0]
            dp[2] = ys[2] - ys[0]
            for (i in 3 until n) {
                dp[i] = min(dp[i - 2] + ys[i] - ys[i - 1], dp[i - 3] + ys[i] - ys[i - 2])
            }
            builder.appendln(dp[n - 1])
        }
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0