結果
問題 | No.314 ケンケンパ |
ユーザー | Ozu0205 |
提出日時 | 2015-12-12 18:19:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 575 ms |
コンパイル使用メモリ | 67,584 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-09-15 08:47:29 |
合計ジャッジ時間 | 1,342 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<queue> #include<functional> #include<set> #include<string> using namespace std; const int mod = 1000000007; int n; int dp[1000001][2][2]; int main(){ cin >> n; dp[1][0][0] = 1; for (int i = 2; i <= n; i++){ dp[i][0][0] = dp[i - 1][0][1] + dp[i - 1][1][0]; dp[i][1][0] = dp[i - 1][0][1] + dp[i - 1][0][0]; dp[i][0][1] = dp[i - 1][1][0]; dp[i][0][0] %= mod; dp[i][1][0] %= mod; dp[i][0][1] %= mod; } cout << (dp[n][0][0] + dp[n][1][0] + dp[n][0][1]) % mod << endl; return 0; }