結果

問題 No.44 DPなすごろく
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-25 19:35:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 54,112 KB
最終ジャッジ日時 2024-11-27 11:20:30
合計ジャッジ時間 5,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,064 KB
testcase_01 AC 104 ms
52,528 KB
testcase_02 AC 115 ms
53,744 KB
testcase_03 AC 102 ms
52,280 KB
testcase_04 AC 100 ms
52,776 KB
testcase_05 AC 110 ms
52,988 KB
testcase_06 AC 111 ms
53,784 KB
testcase_07 AC 104 ms
52,692 KB
testcase_08 AC 114 ms
52,620 KB
testcase_09 AC 118 ms
53,784 KB
testcase_10 AC 110 ms
54,044 KB
testcase_11 AC 111 ms
53,428 KB
testcase_12 AC 115 ms
53,732 KB
testcase_13 AC 102 ms
52,748 KB
testcase_14 AC 109 ms
52,848 KB
testcase_15 AC 110 ms
52,728 KB
testcase_16 AC 116 ms
54,112 KB
testcase_17 AC 116 ms
53,912 KB
testcase_18 AC 111 ms
52,816 KB
testcase_19 AC 121 ms
53,952 KB
testcase_20 AC 116 ms
53,760 KB
testcase_21 AC 111 ms
53,244 KB
testcase_22 AC 115 ms
53,644 KB
testcase_23 AC 109 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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