結果

問題 No.314 ケンケンパ
ユーザー aleutraaleutra
提出日時 2019-06-17 07:21:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 724 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-05-04 18:33:08
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
56,856 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 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 1 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 4 ms
5,376 KB
testcase_17 AC 10 ms
8,704 KB
testcase_18 AC 40 ms
29,456 KB
testcase_19 AC 79 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
#include <string>
#include <queue>
#include <list>
#include <cmath>
#include <stack>
#include <iomanip>

using namespace std;
typedef long long ll;
using Pll = pair<ll,ll>;

const ll INF = 1LL<<60;
const ll MOD = 1000000007;

//cout << fixed << setprecision(10);

int main() {
    ll N;
    cin >> N;

    vector<vector<ll>> dp(N+10,vector<ll>(3));
    dp[0][0]=1;
    for(int i=1;i<=N;i++){
        dp[i][0]=(dp[i-1][1]+dp[i-1][2])%MOD;
        dp[i][1]=(dp[i-1][0])%MOD;
        dp[i][2]=(dp[i-1][1])%MOD;
    }

    ll ans=0;
    for(int i=0;i<3;i++){
        ans=(ans+dp[N][i])%MOD;
    }

    cout << ans << endl;

    return 0;
}
0