結果
| 問題 | No.44 DPなすごろく |
| ユーザー |
幸せウサギ
|
| 提出日時 | 2019-04-29 09:36:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 274 bytes |
| コンパイル時間 | 514 ms |
| コンパイル使用メモリ | 62,568 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-23 20:25:37 |
| 合計ジャッジ時間 | 1,405 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | WA * 20 |
ソースコード
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<iostream>
using namespace std;
long long dp[55]={1};
int N;
int main(void){
cin>>N;
if(3<=N){cout<<N<<endl;}
else{
for(int i=4;i<=N;i++){
dp[i]=dp[i-1]+dp[i-2];
}
cout<<dp[N]+3<<endl;
}
return 0;
}
幸せウサギ