結果

問題 No.44 DPなすごろく
ユーザー iwotiwot
提出日時 2019-12-20 23:18:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 12,144 ms
コンパイル使用メモリ 427,308 KB
実行使用メモリ 49,876 KB
最終ジャッジ日時 2024-07-18 01:45:26
合計ジャッジ時間 20,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,300 KB
testcase_01 AC 287 ms
49,512 KB
testcase_02 AC 290 ms
49,744 KB
testcase_03 AC 284 ms
49,612 KB
testcase_04 AC 284 ms
49,572 KB
testcase_05 AC 286 ms
49,708 KB
testcase_06 AC 284 ms
49,568 KB
testcase_07 AC 287 ms
49,736 KB
testcase_08 AC 286 ms
49,340 KB
testcase_09 AC 288 ms
49,660 KB
testcase_10 AC 289 ms
49,876 KB
testcase_11 AC 290 ms
49,808 KB
testcase_12 AC 288 ms
49,472 KB
testcase_13 AC 286 ms
49,340 KB
testcase_14 AC 285 ms
49,436 KB
testcase_15 AC 287 ms
49,876 KB
testcase_16 AC 286 ms
49,816 KB
testcase_17 AC 286 ms
49,756 KB
testcase_18 AC 288 ms
49,476 KB
testcase_19 AC 292 ms
49,760 KB
testcase_20 AC 284 ms
49,516 KB
testcase_21 AC 285 ms
49,836 KB
testcase_22 AC 287 ms
49,472 KB
testcase_23 AC 287 ms
49,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    var arr = Array(n+1) { 0L }
    arr[0] = 1
    arr[1] = 1

    for (i in 2..n) {
        arr[i] = arr[i-1] + arr[i-2]
    }

    println(arr[n])
}
0