結果

問題 No.1160 Strange Bowling
ユーザー rutilicusrutilicus
提出日時 2020-10-19 21:23:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 12,220 ms
コンパイル使用メモリ 447,780 KB
実行使用メモリ 88,728 KB
最終ジャッジ日時 2024-07-21 08:08:13
合計ジャッジ時間 31,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
51,212 KB
testcase_01 AC 280 ms
51,560 KB
testcase_02 AC 267 ms
51,184 KB
testcase_03 AC 269 ms
51,520 KB
testcase_04 AC 275 ms
51,288 KB
testcase_05 AC 269 ms
51,536 KB
testcase_06 AC 266 ms
51,548 KB
testcase_07 AC 271 ms
51,476 KB
testcase_08 AC 281 ms
51,460 KB
testcase_09 AC 285 ms
51,264 KB
testcase_10 AC 532 ms
87,460 KB
testcase_11 AC 508 ms
71,360 KB
testcase_12 AC 461 ms
62,176 KB
testcase_13 AC 434 ms
57,836 KB
testcase_14 AC 521 ms
87,496 KB
testcase_15 AC 443 ms
60,476 KB
testcase_16 AC 454 ms
62,292 KB
testcase_17 AC 551 ms
85,456 KB
testcase_18 AC 486 ms
71,284 KB
testcase_19 AC 458 ms
66,108 KB
testcase_20 AC 503 ms
76,736 KB
testcase_21 AC 493 ms
71,496 KB
testcase_22 AC 580 ms
59,236 KB
testcase_23 AC 580 ms
59,180 KB
testcase_24 AC 569 ms
58,640 KB
testcase_25 AC 471 ms
67,132 KB
testcase_26 AC 445 ms
60,528 KB
testcase_27 AC 490 ms
74,204 KB
testcase_28 AC 428 ms
61,124 KB
testcase_29 AC 535 ms
87,352 KB
testcase_30 AC 575 ms
88,728 KB
testcase_31 AC 519 ms
78,732 KB
testcase_32 AC 440 ms
60,632 KB
testcase_33 AC 496 ms
70,884 KB
testcase_34 AC 469 ms
70,272 KB
testcase_35 AC 562 ms
88,076 KB
testcase_36 AC 270 ms
51,468 KB
testcase_37 AC 268 ms
51,436 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:26:13: 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(max(dp[0][0], dp[0][1]))
            ^

ソースコード

diff #

import kotlin.math.max

data class Pin(val p: Long, val a: Long)

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    // そのラウンドで[0]: 全部倒す、[1]: aだけ倒す 場合の最大スコア
    val dp = Array(n) { LongArray(2) }

    val pin = Array(n) {
        val (p, a) = readInputLine().split(" ").map { it.toLong() }
        Pin(p, a)
    }

    dp[n - 1][0] = pin[n - 1].p
    dp[n - 1][1] = pin[n - 1].a

    for (i in n - 2 downTo 0) {
        dp[i][0] = max(dp[i + 1][0], dp[i + 1][1]) + pin[i].p
        dp[i][1] = max(dp[i + 1][0] + pin[i + 1].p, dp[i + 1][1] + pin[i + 1].a) + pin[i].a
    }

    builder.appendln(max(dp[0][0], dp[0][1]))

    print(builder.toString())
}

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