結果

問題 No.314 ケンケンパ
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-04 00:36:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 596 bytes
コンパイル時間 3,163 ms
コンパイル使用メモリ 248,692 KB
実行使用メモリ 57,852 KB
最終ジャッジ日時 2024-11-04 00:36:48
合計ジャッジ時間 4,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
57,092 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 10 ms
8,704 KB
testcase_18 AC 38 ms
29,412 KB
testcase_19 AC 77 ms
57,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

const ll mod = 1e9 + 7;

int main() {
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    
    vector dp(N, vector<ll>(3));
    dp[0][0] = 1;
    dp[0][1] = 0;
    dp[0][2] = 0;
    
    rep(i, 1, N) {
        dp[i][0] = dp[i - 1][2];
        dp[i][1] = dp[i - 1][0];
        dp[i][2] = (dp[i - 1][0] + dp[i - 1][1]) % mod;
    }
    
    ll ans = 0;
    rep(i, 0, 3) ans += dp[N - 1][i];
    
    cout << ans % mod << '\n';
}
0