結果

問題 No.314 ケンケンパ
ユーザー t98slidert98slider
提出日時 2024-04-18 03:32:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 15 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 4,561 ms
コンパイル使用メモリ 254,668 KB
実行使用メモリ 15,020 KB
最終ジャッジ日時 2024-04-18 03:32:10
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
14,720 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 3 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 2 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 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 8 ms
8,960 KB
testcase_19 AC 15 ms
15,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint1000000007;

int main(){
    int n;
    cin >> n;
    vector<array<mint,3>> dp(n + 1);
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 3; j++){
            if(j < 2)dp[i + 1][j + 1] += dp[i][j];
            if(j >= 1)dp[i + 1][0] += dp[i][j];
        }
    }
    cout << accumulate(dp[n].begin(), dp[n].end(), mint(0)).val() << '\n';
}
0