結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
54,348 KB
testcase_01 AC 283 ms
54,292 KB
testcase_02 AC 287 ms
54,200 KB
testcase_03 AC 290 ms
54,320 KB
testcase_04 AC 287 ms
54,428 KB
testcase_05 AC 289 ms
54,300 KB
testcase_06 AC 288 ms
54,188 KB
testcase_07 AC 280 ms
54,212 KB
testcase_08 AC 283 ms
54,340 KB
testcase_09 AC 294 ms
54,316 KB
testcase_10 AC 288 ms
54,228 KB
testcase_11 AC 286 ms
54,360 KB
testcase_12 AC 281 ms
54,308 KB
testcase_13 AC 289 ms
54,108 KB
testcase_14 AC 286 ms
54,252 KB
testcase_15 AC 287 ms
54,224 KB
testcase_16 AC 291 ms
54,128 KB
testcase_17 AC 284 ms
54,248 KB
testcase_18 AC 287 ms
54,408 KB
testcase_19 AC 289 ms
54,176 KB
testcase_20 AC 288 ms
54,208 KB
testcase_21 AC 290 ms
54,140 KB
testcase_22 AC 287 ms
54,412 KB
testcase_23 AC 284 ms
54,428 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()
    val list: MutableList<Long> = mutableListOf()
    list.add(1)
    list.add(1)

    for (i in 2..n) {
        list.add(list[i-1] + list[i-2])
    }

    println(list[n])
}
0