結果

問題 No.44 DPなすごろく
ユーザー villachvillach
提出日時 2017-10-11 09:54:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 4,501 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 58,760 KB
最終ジャッジ日時 2024-11-17 09:20:35
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,196 KB
testcase_01 AC 145 ms
53,756 KB
testcase_02 AC 153 ms
58,760 KB
testcase_03 AC 151 ms
55,888 KB
testcase_04 AC 146 ms
53,984 KB
testcase_05 AC 144 ms
56,248 KB
testcase_06 AC 148 ms
55,892 KB
testcase_07 AC 145 ms
56,068 KB
testcase_08 AC 144 ms
55,776 KB
testcase_09 AC 138 ms
54,172 KB
testcase_10 AC 147 ms
56,128 KB
testcase_11 AC 147 ms
56,044 KB
testcase_12 AC 143 ms
55,104 KB
testcase_13 AC 141 ms
56,028 KB
testcase_14 AC 147 ms
58,496 KB
testcase_15 AC 155 ms
56,184 KB
testcase_16 AC 124 ms
55,092 KB
testcase_17 AC 133 ms
53,844 KB
testcase_18 AC 139 ms
56,124 KB
testcase_19 AC 143 ms
58,524 KB
testcase_20 AC 131 ms
53,920 KB
testcase_21 AC 131 ms
53,856 KB
testcase_22 AC 131 ms
54,108 KB
testcase_23 AC 142 ms
58,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N44 {
	private int n;
	public long c;
	public long[][] dp;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		N44 hoge = new N44(n);
		long i = hoge.solve(0, 0);
		System.out.println(i);
	}
	
	N44(int n){
		this.n = n;
		this.dp = new long[n][10000];
		for(int i = 0;i < n;++i){
			for(int j = 0;j < 10000;++j){
				dp[i][j] = -1;
			}
		}
	}
	
	public long solve(int step, int count){
		long a, b;
		if(step + 1 == n){
			return count + 1;
		}else if(step + 2 == n){
			return count + 2;
		}else if(step >= n){
			return 0;
		}
		if(dp[step + 1][count] != -1){
			a = dp[step + 1][count];
		}else{
			a = solve(step + 1, count);
			dp[step + 1][count] = a;
		}
		if(dp[step + 2][count] != -1){
			b = dp[step + 2][count];
		}else{
			b = solve(step + 2, count);
			dp[step + 2][count] = b;
		}
		return a + b;
	}
}
0