結果

問題 No.533 Mysterious Stairs
ユーザー face4face4
提出日時 2018-08-26 17:27:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 65,492 KB
実行使用メモリ 27,208 KB
最終ジャッジ日時 2024-07-01 03:57:01
合計ジャッジ時間 1,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,672 KB
testcase_01 AC 3 ms
9,672 KB
testcase_02 AC 3 ms
9,672 KB
testcase_03 AC 3 ms
9,672 KB
testcase_04 AC 3 ms
9,672 KB
testcase_05 AC 3 ms
9,668 KB
testcase_06 AC 3 ms
9,668 KB
testcase_07 AC 3 ms
9,540 KB
testcase_08 AC 3 ms
9,672 KB
testcase_09 AC 4 ms
9,796 KB
testcase_10 AC 3 ms
9,672 KB
testcase_11 AC 3 ms
9,544 KB
testcase_12 AC 3 ms
9,540 KB
testcase_13 AC 3 ms
9,544 KB
testcase_14 AC 3 ms
9,676 KB
testcase_15 AC 3 ms
9,544 KB
testcase_16 AC 3 ms
9,668 KB
testcase_17 AC 3 ms
9,544 KB
testcase_18 AC 3 ms
9,668 KB
testcase_19 AC 3 ms
9,668 KB
testcase_20 AC 4 ms
9,676 KB
testcase_21 AC 5 ms
9,672 KB
testcase_22 AC 9 ms
17,736 KB
testcase_23 AC 19 ms
26,952 KB
testcase_24 AC 19 ms
27,208 KB
testcase_25 AC 4 ms
9,544 KB
testcase_26 AC 18 ms
26,444 KB
testcase_27 AC 8 ms
13,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

typedef long long ll;
const ll mod = 1000000007;

int main(){
    int n;
    cin >> n;

    static ll dp[4][1000005] = {};

    dp[1][1] = 1;
    dp[2][2] = 1;
    dp[3][3] = 1;

    for(int j = 1; j <= n; j++){
        for(int i = 1; i <= 3; i++) dp[i][j] %= mod;
        for(int i = 1; i <= 3; i++){
            for(int k = 1; k <= 3; k++){
                if(i == k)  continue;
                dp[k][j+k] += dp[i][j];
            }
        }
    }

    cout << (dp[1][n] + dp[2][n] + dp[3][n]) % mod << endl;

    return 0;
}
0