結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
tntan
|
| 提出日時 | 2015-12-15 02:41:15 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 1,000 ms |
| コード長 | 357 bytes |
| 記録 | |
| コンパイル時間 | 877 ms |
| コンパイル使用メモリ | 83,568 KB |
| 実行使用メモリ | 7,552 KB |
| 最終ジャッジ日時 | 2026-04-04 19:55:52 |
| 合計ジャッジ時間 | 1,166 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <vector>
using namespace std;
static const int MAX_N = 1000005;
int main()
{
int n, dp[MAX_N];
cin >> n;
dp[1] = 1;
dp[2] = 2;
dp[3] = 2;
for (int i = 4; i <= n; i++)
{
dp[i] = dp[i - 2] + dp[i - 3];
dp[i] %= 1000000007;
}
cout << dp[n] << endl;
return 0;
}
tntan