結果

問題 No.533 Mysterious Stairs
ユーザー deark1414deark1414
提出日時 2017-10-06 16:32:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 55,132 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-11-17 00:32:17
合計ジャッジ時間 1,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
15,104 KB
testcase_01 AC 11 ms
15,232 KB
testcase_02 AC 10 ms
15,232 KB
testcase_03 AC 11 ms
15,104 KB
testcase_04 AC 10 ms
15,232 KB
testcase_05 AC 10 ms
15,104 KB
testcase_06 AC 10 ms
15,104 KB
testcase_07 AC 10 ms
14,976 KB
testcase_08 AC 10 ms
15,104 KB
testcase_09 AC 10 ms
15,104 KB
testcase_10 AC 10 ms
15,104 KB
testcase_11 AC 11 ms
15,104 KB
testcase_12 AC 11 ms
15,104 KB
testcase_13 AC 10 ms
14,976 KB
testcase_14 AC 10 ms
15,104 KB
testcase_15 AC 10 ms
15,104 KB
testcase_16 AC 11 ms
15,104 KB
testcase_17 AC 10 ms
15,104 KB
testcase_18 AC 11 ms
15,104 KB
testcase_19 AC 11 ms
15,104 KB
testcase_20 AC 14 ms
15,104 KB
testcase_21 AC 14 ms
15,104 KB
testcase_22 AC 20 ms
15,104 KB
testcase_23 AC 37 ms
15,104 KB
testcase_24 AC 37 ms
15,104 KB
testcase_25 AC 14 ms
15,104 KB
testcase_26 AC 33 ms
15,104 KB
testcase_27 AC 17 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string.h>

using namespace std;
const int limn = 1e6;
int dp[limn+10][3];
int divn = 1e9 + 7;
int main(){
	memset(dp,0,sizeof(dp));
	int n;
	cin >> n;
	
	dp[0][0] = 1;
	
	for(int i = 0;i < n;i++){
		for(int j = 0;j < 3;j++){
			for(int k = 0;k < 3;k++){
				if(i==0){
					dp[i+k+1][k] = (dp[i+k+1][k] + dp[i][j]) % divn;
				}else{
					if(j != k){
						dp[i+k+1][k] = (dp[i+k+1][k] + dp[i][j]) % divn;
					}
				}
			}
		}
	}
	
	int ans = 0;
	for(int i = 0;i < 3;i++) ans = (ans + dp[n][i]) % divn;
	
	cout << ans << endl;
	return 0;
}
0