結果

問題 No.44 DPなすごろく
ユーザー vjudge1
提出日時 2024-02-19 22:08:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 189,560 KB
最終ジャッジ日時 2025-02-19 17:02:55
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define pii pair<int, int>
#define fi  first
#define se  second
#define ll  long long
#define pb  emplace_back

using namespace std;

const int N = 1e5+7;
ll n, f[57];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	
	cin >> n;
	f[1] = 1;
	f[2] = 2;
	for(ll i = 3; i <= n; i++) f[i] = f[i-1] + f[i-2];
	cout << f[n];
	return 0;
}
0