結果

問題 No.741 AscNumber(Easy)
ユーザー rutilicusrutilicus
提出日時 2020-10-07 21:11:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 13,828 ms
コンパイル使用メモリ 432,252 KB
実行使用メモリ 184,148 KB
最終ジャッジ日時 2024-07-20 04:06:39
合計ジャッジ時間 38,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
53,900 KB
testcase_01 AC 328 ms
53,868 KB
testcase_02 AC 335 ms
53,860 KB
testcase_03 AC 341 ms
54,000 KB
testcase_04 AC 326 ms
54,056 KB
testcase_05 AC 335 ms
54,152 KB
testcase_06 AC 328 ms
53,920 KB
testcase_07 AC 325 ms
53,856 KB
testcase_08 AC 333 ms
54,072 KB
testcase_09 AC 332 ms
53,876 KB
testcase_10 AC 330 ms
53,908 KB
testcase_11 AC 331 ms
53,968 KB
testcase_12 AC 337 ms
53,964 KB
testcase_13 AC 335 ms
53,996 KB
testcase_14 AC 322 ms
53,852 KB
testcase_15 AC 329 ms
53,944 KB
testcase_16 AC 351 ms
54,060 KB
testcase_17 AC 335 ms
54,020 KB
testcase_18 AC 329 ms
53,900 KB
testcase_19 AC 331 ms
53,968 KB
testcase_20 AC 335 ms
53,924 KB
testcase_21 AC 340 ms
53,956 KB
testcase_22 AC 334 ms
53,908 KB
testcase_23 AC 329 ms
54,044 KB
testcase_24 AC 337 ms
53,792 KB
testcase_25 AC 334 ms
54,012 KB
testcase_26 AC 329 ms
53,788 KB
testcase_27 AC 334 ms
53,768 KB
testcase_28 AC 332 ms
53,760 KB
testcase_29 AC 319 ms
53,932 KB
testcase_30 AC 332 ms
54,136 KB
testcase_31 AC 334 ms
54,120 KB
testcase_32 AC 334 ms
53,844 KB
testcase_33 AC 332 ms
53,944 KB
testcase_34 AC 344 ms
54,072 KB
testcase_35 AC 538 ms
148,672 KB
testcase_36 AC 441 ms
109,456 KB
testcase_37 AC 456 ms
109,436 KB
testcase_38 AC 474 ms
109,216 KB
testcase_39 AC 441 ms
109,184 KB
testcase_40 AC 457 ms
109,460 KB
testcase_41 AC 534 ms
148,648 KB
testcase_42 AC 439 ms
109,344 KB
testcase_43 AC 416 ms
109,540 KB
testcase_44 AC 506 ms
148,856 KB
testcase_45 AC 518 ms
148,620 KB
testcase_46 AC 545 ms
148,600 KB
testcase_47 AC 396 ms
68,928 KB
testcase_48 AC 576 ms
148,632 KB
testcase_49 AC 529 ms
148,504 KB
testcase_50 AC 380 ms
63,876 KB
testcase_51 AC 451 ms
109,380 KB
testcase_52 AC 656 ms
184,148 KB
testcase_53 AC 662 ms
184,024 KB
testcase_54 AC 634 ms
183,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:22: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(dp[n - 1].sum() % mod)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val mod = 1000000007L

    val n = readInputLine().toInt()

    val dp = Array(n) { LongArray(10) }

    for (i in 0..9) {
        dp[0][i] = 1L
    }

    for (i in 1 until n) {
        var current = 0L
        for (j in 0..9) {
            current += dp[i - 1][j]
            dp[i][j] = current % mod
        }
    }

    builder.appendln(dp[n - 1].sum() % mod)

    print(builder.toString())
}

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