結果

問題 No.1231 Make a Multiple of Ten
ユーザー rutilicusrutilicus
提出日時 2020-09-19 21:45:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 14,728 ms
コンパイル使用メモリ 438,312 KB
実行使用メモリ 90,476 KB
最終ジャッジ日時 2024-06-23 19:23:38
合計ジャッジ時間 22,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
53,260 KB
testcase_01 AC 307 ms
57,056 KB
testcase_02 AC 303 ms
56,928 KB
testcase_03 AC 299 ms
57,088 KB
testcase_04 AC 545 ms
76,012 KB
testcase_05 AC 604 ms
75,892 KB
testcase_06 AC 484 ms
65,784 KB
testcase_07 AC 511 ms
77,968 KB
testcase_08 AC 480 ms
67,748 KB
testcase_09 AC 469 ms
63,644 KB
testcase_10 AC 513 ms
76,100 KB
testcase_11 AC 574 ms
78,160 KB
testcase_12 AC 582 ms
90,476 KB
testcase_13 AC 703 ms
90,436 KB
testcase_14 AC 303 ms
57,084 KB
testcase_15 AC 709 ms
90,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:24:13: warning: 'appendln(Int): 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][0])
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()
    val aArr = readInputLine().split(" ").map { it.toInt() }.toIntArray()

    // 10の剰余を取った時の最大枚数
    val dp = Array(n + 1) { IntArray(10) { -1 } }

    dp[0][0] = 0

    for ((i, a) in aArr.withIndex()) {
        for (j in 0..9) {
            if (dp[i][j] == -1) {
                continue
            }
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
            dp[i + 1][(j + a) % 10] = max(dp[i + 1][(j + a) % 10], dp[i][j] + 1)
        }
    }

    builder.appendln(dp[n][0])

    print(builder.toString())
}

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