結果

問題 No.44 DPなすごろく
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-06 16:11:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 51,644 KB
最終ジャッジ日時 2024-10-05 10:08:32
合計ジャッジ時間 5,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
51,644 KB
testcase_01 AC 109 ms
41,376 KB
testcase_02 AC 107 ms
41,212 KB
testcase_03 AC 96 ms
40,216 KB
testcase_04 AC 95 ms
39,808 KB
testcase_05 AC 96 ms
39,936 KB
testcase_06 AC 96 ms
39,828 KB
testcase_07 AC 107 ms
40,944 KB
testcase_08 AC 110 ms
41,080 KB
testcase_09 AC 99 ms
39,936 KB
testcase_10 AC 91 ms
39,792 KB
testcase_11 AC 107 ms
41,032 KB
testcase_12 AC 105 ms
41,136 KB
testcase_13 AC 97 ms
39,844 KB
testcase_14 AC 103 ms
41,044 KB
testcase_15 AC 101 ms
39,932 KB
testcase_16 AC 95 ms
39,680 KB
testcase_17 AC 110 ms
40,744 KB
testcase_18 AC 100 ms
39,752 KB
testcase_19 AC 107 ms
40,972 KB
testcase_20 AC 107 ms
41,208 KB
testcase_21 AC 100 ms
39,920 KB
testcase_22 AC 110 ms
40,884 KB
testcase_23 AC 108 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Arrays;

class Main{
	static int n;
	static long memo[] = new long[51];

	static long saiki(int now){
		if(now == n) return 1;
		if(now >= n) return 0;
		if(memo[now] != -1) return memo[now];

		long sum = 0;
		sum += saiki(now + 1);
		sum += saiki(now + 2);
		return memo[now] = sum;
	}

	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		Arrays.fill(memo,-1);
		System.out.println(saiki(0));
	}
}
0