結果

問題 No.44 DPなすごろく
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-28 15:36:36
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 12,246 ms
コンパイル使用メモリ 428,896 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-11-18 08:37:22
合計ジャッジ時間 19,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
54,160 KB
testcase_01 AC 280 ms
54,076 KB
testcase_02 AC 284 ms
54,164 KB
testcase_03 AC 292 ms
54,148 KB
testcase_04 AC 284 ms
54,164 KB
testcase_05 AC 284 ms
54,280 KB
testcase_06 AC 288 ms
54,272 KB
testcase_07 AC 283 ms
54,172 KB
testcase_08 AC 288 ms
54,208 KB
testcase_09 AC 281 ms
54,068 KB
testcase_10 AC 283 ms
54,172 KB
testcase_11 AC 283 ms
54,280 KB
testcase_12 AC 282 ms
54,080 KB
testcase_13 AC 285 ms
54,292 KB
testcase_14 AC 279 ms
54,364 KB
testcase_15 AC 289 ms
54,156 KB
testcase_16 AC 290 ms
54,212 KB
testcase_17 AC 281 ms
54,272 KB
testcase_18 AC 286 ms
54,308 KB
testcase_19 AC 288 ms
54,140 KB
testcase_20 AC 283 ms
54,144 KB
testcase_21 AC 284 ms
54,284 KB
testcase_22 AC 279 ms
54,260 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// フィボナッチ数!!
fun main() {
    val dp = IntArray(60)
    dp[1] = 1
    for (i in 2..59) {
        dp[i] = dp[i-2] + dp[i-1]
    }
    println(dp[readLine()!!.toInt()+1])
}
0