結果
問題 | No.314 ケンケンパ |
ユーザー | Lay_ec |
提出日時 | 2015-12-07 20:41:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 80,072 KB |
実行使用メモリ | 34,632 KB |
最終ジャッジ日時 | 2024-09-14 18:29:43 |
合計ジャッジ時間 | 1,480 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
34,048 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 5 ms
6,656 KB |
testcase_18 | AC | 20 ms
18,432 KB |
testcase_19 | AC | 42 ms
34,632 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <cmath> #include <algorithm> #include <cstdlib> #include <ctime> #include <cstdio> #include <functional> #include <set> #include <sstream> #include <map> #include <queue> #include <stack> using namespace std; long long ken[1000010][3],pa[1000010]; const long long mod=1000000007; int main() { int n; cin>>n; ken[1][1]=1; for(int i=1;i<n;i++){ for(int j=1;j<3;j++){ if(ken[i][j]==0) continue; //ケン->ケン if(j!=2) ken[i+1][j+1]=(ken[i+1][j+1]+ken[i][j])%mod; //ケン->パ pa[i+1]=(pa[i+1]+ken[i][j])%mod; } //パ->ケン if(pa[i]==0) continue; ken[i+1][1]=(ken[i+1][1]+pa[i]); } long long res=(ken[n][0]+ken[n][1]+ken[n][2]+pa[n])%mod; cout<<res<<endl; return 0; }