結果

問題 No.786 京都大学の過去問
ユーザー tentententen
提出日時 2020-09-01 08:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 4,744 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-04-28 21:49:46
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,008 KB
testcase_01 AC 135 ms
40,808 KB
testcase_02 AC 114 ms
39,840 KB
testcase_03 AC 135 ms
41,404 KB
testcase_04 AC 138 ms
40,988 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