結果

問題 No.314 ケンケンパ
ユーザー snteasntea
提出日時 2015-12-07 00:10:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 906 bytes
コンパイル時間 1,130 ms
コンパイル使用メモリ 143,472 KB
実行使用メモリ 26,872 KB
最終ジャッジ日時 2023-10-12 18:15:24
合計ジャッジ時間 2,073 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
26,388 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 1 ms
4,352 KB
testcase_04 AC 1 ms
4,352 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,352 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 1 ms
4,348 KB
testcase_13 AC 2 ms
4,352 KB
testcase_14 AC 1 ms
4,348 KB
testcase_15 AC 2 ms
4,352 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 4 ms
7,584 KB
testcase_18 AC 8 ms
15,640 KB
testcase_19 AC 13 ms
26,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cmath>
#include <climits>
#include <cstdio>

using namespace std;

#define endl '\n'
#define PB push_back
#define ALL(a)  (a).begin(),(a).end()
#define SZ(a) int((a).size())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n)  FOR(i,0,n)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define AALL(a,n) (a),(a)+(n)

typedef pair<int,int> P;
typedef long long int LL;
typedef unsigned long long ULL;
typedef pair<LL,LL> LP;

LL dp[1000000+10][3];
const int mod = 1000000007;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	int N;
	cin >> N;
	dp[0][1] = dp[0][2] = 0;
	dp[0][0] = 1;
	FOR(i,1,N+1){
		dp[i][0] = (dp[i-1][1]+dp[i-1][2])%mod;
		dp[i][1] = (dp[i-1][0])%mod;
		dp[i][2] = dp[i-1][1]%mod;
	}
	cout << (dp[N][0]+dp[N][1]+dp[N][2])%mod << endl;
	return 0;
}
0