結果

問題 No.314 ケンケンパ
ユーザー hiragnhiragn
提出日時 2019-08-05 21:43:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 704 bytes
コンパイル時間 1,525 ms
コンパイル使用メモリ 166,312 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-07-18 13:43:51
合計ジャッジ時間 2,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long long MOD = 1e9 + 7;

long long dp[1000001][3];

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

    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < 3; ++j) {
            dp[i][j] = 0;
        }
    }

    dp[1][1] = 1;// K
    for (int i = 1; i < n; ++i) {
        dp[i + 1][1] += dp[i][0];// P->K
        dp[i + 1][1] %= MOD;

        dp[i + 1][0] += dp[i][1] + dp[i][2];// K->P, KK->P
        dp[i + 1][0] %= MOD;
        
        dp[i + 1][2] += dp[i][1];// K->KK
        dp[i + 1][2] %= MOD;
    }

    long long ans = 0;
    for (int i = 0; i < 3; ++i) {
        ans = (ans + dp[n][i]) % MOD;
    }
    cout << ans << endl;
    return 0;
}
0