結果

問題 No.786 京都大学の過去問
ユーザー tatyamtatyam
提出日時 2019-02-08 21:48:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 194,068 KB
最終ジャッジ日時 2025-01-06 20:56:08
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long;
using pll=pair<ll,ll>;
#define vec(type,name,...) vector<type>name(__VA_ARGS__)
#define each(i,a) for(auto&i:a)
#define name4(a,b,c,d,...) d
#define rep(...) name4(__VA_ARGS__,rep3,rep2,rep1)(__VA_ARGS__)
#define rep1(a) rep3(i,0,a)
#define rep2(i,a) rep3(i,0,a)
#define rep3(i,a,b) for(ll i=a;i<b;i++)
const ll LINF=0x1fffffffffffffff;
template <class T>bool update_min(T&a,const T&b){if(a>b){a=b;return 1;}return 0;}
template <class T>bool update_max(T&a,const T&b){if(a<b){a=b;return 1;}return 0;}


signed main(){
	ll n;
	cin>>n;
	vector<ll>a(n+1);
	a[0]=1;
	rep(n){
		a[i+1]+=a[i];
		if(i+1<n)a[i+2]+=a[i];
	}
	cout<<a[n]<<endl;
}
0