結果

問題 No.533 Mysterious Stairs
ユーザー ttakanottakano
提出日時 2017-12-01 10:47:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 158,576 KB
実行使用メモリ 34,772 KB
最終ジャッジ日時 2024-05-05 20:25:12
合計ジャッジ時間 3,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
34,552 KB
testcase_01 AC 10 ms
34,528 KB
testcase_02 AC 11 ms
34,432 KB
testcase_03 AC 11 ms
34,688 KB
testcase_04 AC 10 ms
34,568 KB
testcase_05 AC 10 ms
34,688 KB
testcase_06 AC 11 ms
34,560 KB
testcase_07 AC 10 ms
34,536 KB
testcase_08 AC 10 ms
34,464 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i];}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000000;

ll dp[1000003][4];

int main(){
  int n;  cin>>n;
  memset(dp,0,sizeof(dp));
  dp[1][1]=1;
  dp[2][2]=1;
  dp[3][1]=1;
  dp[3][2]=1;
  dp[3][3]=1;
  rep(i,4,n+1){
    dp[i][1]=(dp[i-1][2]+dp[i-1][3])%mod;
    dp[i][2]=(dp[i-2][1]+dp[i-2][3])%mod;
    dp[i][3]=(dp[i-3][2]+dp[i-3][1])%mod;
    //print(1<<":"<<dp[i][1]<<" "<<2<<":"<<dp[i][2]<<" "<<3<<":"<<dp[i][3]);
  }
  print((dp[n][1]+dp[n][2]+dp[n][3])%mod);
}
0