結果

問題 No.533 Mysterious Stairs
ユーザー beetbeet
提出日時 2017-06-23 22:28:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 158,800 KB
実行使用メモリ 237,880 KB
最終ジャッジ日時 2024-10-04 07:33:47
合計ジャッジ時間 5,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
237,880 KB
testcase_01 AC 127 ms
237,728 KB
testcase_02 AC 129 ms
237,648 KB
testcase_03 AC 129 ms
237,700 KB
testcase_04 AC 129 ms
237,824 KB
testcase_05 AC 128 ms
237,776 KB
testcase_06 AC 128 ms
237,696 KB
testcase_07 AC 128 ms
237,696 KB
testcase_08 AC 128 ms
237,784 KB
testcase_09 AC 128 ms
237,672 KB
testcase_10 AC 129 ms
237,756 KB
testcase_11 AC 128 ms
237,696 KB
testcase_12 AC 127 ms
237,580 KB
testcase_13 AC 128 ms
237,696 KB
testcase_14 AC 129 ms
237,824 KB
testcase_15 AC 128 ms
237,804 KB
testcase_16 AC 129 ms
237,676 KB
testcase_17 AC 130 ms
237,812 KB
testcase_18 AC 130 ms
237,696 KB
testcase_19 AC 131 ms
237,824 KB
testcase_20 AC 135 ms
237,824 KB
testcase_21 AC 134 ms
237,696 KB
testcase_22 AC 149 ms
237,824 KB
testcase_23 AC 183 ms
237,740 KB
testcase_24 AC 186 ms
237,824 KB
testcase_25 AC 138 ms
237,824 KB
testcase_26 AC 178 ms
237,616 KB
testcase_27 AC 142 ms
237,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
int dp[3][10000200];
int MOD=1000000007LL;
signed main(){
  memset(dp,0,sizeof(dp));
  int n;
  cin>>n;
  for(int i=0;i<3;i++) dp[i][i+1]=1;
  for(int i=0;i<n;i++){
    for(int j=0;j<3;j++){
      for(int k=0;k<3;k++){
	if(j==k) continue;
	(dp[k][i+k+1]+=dp[j][i])%=MOD;
      }
    }
  }
  int ans=0;
  (ans+=dp[0][n])%=MOD;
  (ans+=dp[1][n])%=MOD;
  (ans+=dp[2][n])%=MOD;
  cout<<ans<<endl;
  return 0;
}
0