結果

問題 No.786 京都大学の過去問
ユーザー tentententen
提出日時 2020-09-01 08:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-11-17 18:12:58
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,524 KB
testcase_01 AC 135 ms
41,416 KB
testcase_02 AC 135 ms
41,412 KB
testcase_03 AC 136 ms
41,280 KB
testcase_04 AC 136 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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