結果
問題 | No.786 京都大学の過去問 |
ユーザー | motakine |
提出日時 | 2020-05-13 13:19:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,613 bytes |
コンパイル時間 | 1,634 ms |
コンパイル使用メモリ | 169,300 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 15:34:26 |
合計ジャッジ時間 | 2,092 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i=0; i<(int)(n); i++) #define all(v) v.begin(), v.end() #define PRINT(v) for (auto x : (v)) cout <<x <<" " ; cout <<endl; using namespace std; using ll = long long; using Graph = vector<vector<int>>; using mat = vector<vector<ll>>; const ll MOD = 1000000007; const ll INF = 10000000000000000; const int inf = 1001001001; vector<int> x4 = {0, 1, 0, -1}, x8 = {0, 1, 1, 1, 0, -1, -1, -1}; vector<int> y4 = {1, 0, -1, 0}, y8 = {1, 1, 0, -1, -1, -1, 0, 1}; template<class T> inline bool chmin(T& a, T b){if (a>b){a = b; return true;}return false;} template<class T> inline bool chmax(T& a, T b){if (a<b){a = b; return true;}return false;} template<class T> inline T powerM(T a,T b){if (b==0) return 1; T tmp = powerM(a,b/2); if (b%2==0) return tmp*tmp%MOD; else return tmp*tmp%MOD*a%MOD; } template<class T> inline T power(T a,T b,T m){ if (b==0) return 1; T tmp = power(a,b/2,m); if (b%2==0) return tmp*tmp%m; else return tmp*tmp%m*a%m; } template<class T> inline T gcd(T a, T b){if (b==0) return a; return gcd(b, a%b);} template<class T> inline T lcm(T a, T b){return a / gcd(a,b) * b;} // ax+by=gcd(a,b)を解く template<class T> inline T extgcd(T a,T b,T &x,T &y){if (b==0){x=1; y=0; return a;} T d=extgcd(b,a%b,y,x); y -= a/b*x; return d;} void hey(){ cout <<"hey" <<endl; } template<class T> struct edge { int to; T cost;}; int main() { int n; cin >>n; vector<ll> dp(n+10, 0); // dp[i] := i段の登り方がdp[i]通り dp[0] = 1; for (int i=0; i<n; i++){ dp[i+1] += dp[i]; dp[i+2] += dp[i]; } ll res = dp[n]; cout <<res <<endl; }