結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-11-24 07:57:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 1,000 ms |
| コード長 | 330 bytes |
| コンパイル時間 | 1,639 ms |
| コンパイル使用メモリ | 168,640 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-12-24 19:05:14 |
| 合計ジャッジ時間 | 2,512 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
const int mod = 1e9 + 7;
int n; cin >> n;
vector<long long> dp(n);
dp[0] = 1; dp[1] = 2; dp[2] = 2;
for(int i = 3; i < n; i++) dp[i] = (dp[i - 2] + dp[i - 3]) % mod;
cout << dp[n - 1] << endl;
return 0;
}