結果

問題 No.44 DPなすごろく
ユーザー atkrymatkrym
提出日時 2016-10-18 15:36:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-11-22 12:20:50
合計ジャッジ時間 6,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,320 KB
testcase_01 AC 133 ms
41,348 KB
testcase_02 AC 133 ms
40,940 KB
testcase_03 AC 134 ms
41,352 KB
testcase_04 AC 132 ms
41,256 KB
testcase_05 AC 132 ms
41,280 KB
testcase_06 AC 133 ms
41,324 KB
testcase_07 AC 133 ms
41,256 KB
testcase_08 AC 134 ms
41,264 KB
testcase_09 AC 133 ms
41,264 KB
testcase_10 AC 134 ms
41,556 KB
testcase_11 AC 132 ms
41,712 KB
testcase_12 AC 132 ms
41,328 KB
testcase_13 AC 134 ms
41,172 KB
testcase_14 AC 132 ms
41,320 KB
testcase_15 AC 133 ms
41,400 KB
testcase_16 AC 133 ms
40,948 KB
testcase_17 AC 131 ms
41,020 KB
testcase_18 AC 132 ms
41,416 KB
testcase_19 AC 133 ms
41,220 KB
testcase_20 AC 132 ms
41,140 KB
testcase_21 AC 132 ms
41,356 KB
testcase_22 AC 134 ms
41,252 KB
testcase_23 AC 133 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        long[] dp = new long[51];
        dp[0] = 1;
        dp[1] = 1;
        for (int i=2;i<51;i++) {
            dp[i] = dp[i-2] + dp[i-1];
        }
        System.out.println(dp[sc.nextInt()]);
    }
}
0