結果
問題 | No.314 ケンケンパ |
ユーザー | zuvizudar |
提出日時 | 2017-12-06 02:14:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 169 ms / 1,000 ms |
コード長 | 1,290 bytes |
コンパイル時間 | 1,194 ms |
コンパイル使用メモリ | 96,604 KB |
実行使用メモリ | 120,448 KB |
最終ジャッジ日時 | 2024-05-06 12:53:58 |
合計ジャッジ時間 | 2,467 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 169 ms
118,272 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 5 ms
6,016 KB |
testcase_17 | AC | 17 ms
14,848 KB |
testcase_18 | AC | 81 ms
59,136 KB |
testcase_19 | AC | 169 ms
120,448 KB |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> #include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<memory> #include<functional> #include<set> using namespace std; #define ALL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define PP(p) cout<<(p)<<" "; #define pb push_back #define mp make_pair #define INF 1e18 typedef long long ll; #define int ll typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<string> vs; typedef vector<char> vc; typedef pair<int, int> pi; //int dy[8]={1,1,1,0,-1,-1,-1,0}; //int dx[8]={-1,0,1,1,1,0,-1,-1}; int dx[4]={0,1,0,-1}; int dy[4]={1,0,-1,0}; int mod=1e9+7; int N,M; vi a,b; vvi dp; void input(){ cin>>N; dp.resize(N+1,vi(4,-1)); } int dfs(int now,int cnt){ if(now>=N)return 1; if(dp[now][cnt]!=-1)return dp[now][cnt]; int ret=0; if(cnt<2) ret+=dfs(now+1,cnt+1); if(cnt!=0) ret+=dfs(now+1,0); ret%=mod; return dp[now][cnt]=ret; } signed main(){ cin.tie(0); ios::sync_with_stdio(false); input(); P(dfs(0,0)) return 0; }