結果

問題 No.314 ケンケンパ
ユーザー yuma220284yuma220284
提出日時 2019-07-21 19:52:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 14 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 1,266 ms
コンパイル使用メモリ 143,968 KB
実行使用メモリ 26,736 KB
最終ジャッジ日時 2023-09-05 02:09:54
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main() {
	int N, MOD = 1000000007;
	static long long DP[1000010][3] = {};
	DP[0][1] = 1;
	cin >> N;
	for (int i = 1; i <= N; i++) {
		DP[i][0] = DP[i - 1][2];
		DP[i][0] %= MOD;
		DP[i][1] = DP[i - 1][0] + DP[i - 1][2];
		DP[i][1] %= MOD;
		DP[i][2] = DP[i - 1][1];
		DP[i][2] %= MOD;
	}
	cout << (DP[N][0] + DP[N][1] + DP[N][2]) % MOD << endl;
}
0