結果
| 問題 |
No.314 ケンケンパ
|
| コンテスト | |
| ユーザー |
tntan
|
| 提出日時 | 2015-12-15 02:41:15 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 1,000 ms |
| コード長 | 357 bytes |
| コンパイル時間 | 2,008 ms |
| コンパイル使用メモリ | 66,444 KB |
| 実行使用メモリ | 7,424 KB |
| 最終ジャッジ日時 | 2024-09-15 12:59:30 |
| 合計ジャッジ時間 | 1,701 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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