結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
springroll
|
| 提出日時 | 2018-11-04 05:19:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 1,000 ms |
| コード長 | 296 bytes |
| コンパイル時間 | 1,547 ms |
| コンパイル使用メモリ | 167,240 KB |
| 実行使用メモリ | 12,060 KB |
| 最終ジャッジ日時 | 2024-11-20 19:45:51 |
| 合計ジャッジ時間 | 2,516 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
ll pr = (ll)(1e9+7);
int main() {
int N;
cin >> N;
vector<ll> dp(1111111);
dp[0]=0; dp[1]=1; dp[2]=2, dp[3]=2;
for (int i = 3; i < N; i++) {
dp[i+1] = dp[i-1] + dp[i-2];
dp[i+1] %= pr;
}
cout << dp[N] << endl;
}
springroll