結果

問題 No.314 ケンケンパ
ユーザー silopysilopy
提出日時 2019-07-05 20:00:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 415 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 66,856 KB
実行使用メモリ 15,300 KB
最終ジャッジ日時 2024-09-22 04:53:05
合計ジャッジ時間 1,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
15,220 KB
testcase_01 AC 5 ms
15,068 KB
testcase_02 AC 5 ms
15,168 KB
testcase_03 AC 7 ms
15,212 KB
testcase_04 AC 6 ms
15,132 KB
testcase_05 AC 6 ms
15,224 KB
testcase_06 AC 6 ms
15,300 KB
testcase_07 AC 6 ms
15,120 KB
testcase_08 AC 5 ms
15,028 KB
testcase_09 AC 6 ms
15,124 KB
testcase_10 AC 5 ms
15,180 KB
testcase_11 AC 6 ms
15,228 KB
testcase_12 AC 5 ms
15,156 KB
testcase_13 AC 6 ms
15,192 KB
testcase_14 AC 6 ms
15,160 KB
testcase_15 AC 6 ms
15,132 KB
testcase_16 AC 5 ms
15,204 KB
testcase_17 AC 6 ms
15,156 KB
testcase_18 AC 8 ms
15,232 KB
testcase_19 AC 11 ms
15,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
using lint=int64_t;

const int mod=1e9+7;

int main()
{
	int N;

	cin >> N;

	int dp[1000010][3]={};
	dp[0][0]=1;
	for(int i=0;i<N;i++)
	{
		dp[i+1][0]+=(dp[i][1]+dp[i][2]);
		dp[i+1][1]+=dp[i][0];
		dp[i+1][2]+=dp[i][1];
		dp[i+1][0]%=mod;
		dp[i+1][1]%=mod;
		dp[i+1][2]%=mod;
	}

	cout << (((dp[N][0]+dp[N][1])%mod)+dp[N][2])%mod << endl;
	return 0;
}
0