結果

問題 No.44 DPなすごろく
ユーザー picakunpicakun
提出日時 2017-05-28 20:32:44
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 64,448 KB
実行使用メモリ 7,692 KB
最終ジャッジ日時 2023-10-21 13:59:19
合計ジャッジ時間 12,219 ms
ジャッジサーバーID
(参考情報)
judge10 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 217 ms
4,348 KB
testcase_03 AC 13 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 54 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 54 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 4 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 3,901 ms
4,348 KB
testcase_15 AC 6 ms
4,348 KB
testcase_16 AC 6 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 570 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<string>
#include<vector>

using namespace std;


vector<long> memo(51,-1);
long dp(int N){
	if(memo[N] == -1){
		if(N <= 2){
			memo[N] = N;
			return N;
		}
		else{
			return dp(N-1) + dp(N-2);
		}
	}
	else
		return memo[N];

}

int main(){
	int N;
	cin >> N;
	long long ans;
	ans = dp(N);

	cout << ans << endl;
	return 0;
}

0