結果

問題 No.314 ケンケンパ
ユーザー fushime2fushime2
提出日時 2017-12-29 19:45:29
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 159,108 KB
実行使用メモリ 97,140 KB
最終ジャッジ日時 2024-12-21 10:34:25
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
96,168 KB
testcase_01 AC 13 ms
50,104 KB
testcase_02 AC 13 ms
50,260 KB
testcase_03 AC 14 ms
50,220 KB
testcase_04 AC 12 ms
50,288 KB
testcase_05 AC 14 ms
50,192 KB
testcase_06 AC 13 ms
50,240 KB
testcase_07 AC 12 ms
50,252 KB
testcase_08 AC 13 ms
50,268 KB
testcase_09 AC 11 ms
50,144 KB
testcase_10 AC 12 ms
50,220 KB
testcase_11 AC 12 ms
50,324 KB
testcase_12 AC 13 ms
50,276 KB
testcase_13 AC 13 ms
50,248 KB
testcase_14 AC 12 ms
50,484 KB
testcase_15 AC 13 ms
50,724 KB
testcase_16 AC 14 ms
51,348 KB
testcase_17 AC 18 ms
54,840 KB
testcase_18 AC 44 ms
72,516 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

typedef long long ll;
#define FOR(i,a,b) for(int (i)=(a);i<(int)(b);i++)
#define rep(i,n) FOR(i,0,n)
#define mset(a,x) memset(a,x,sizeof(a))

const int mod = (int)1e9 + 7;
int N;

ll dp[1000000][3][2];
ll rec(int i, int ken, int pre) {
    ll &r = dp[i][ken][pre];
    if (r != -1) return r;
    if (ken > 2) return r = 0;
    if (i >= N) return r = 1;
    if (pre == 0)
        r = (rec(i + 1, ken + 1, 0) % mod + rec(i + 1, 0, 1) % mod) % mod;
    else
        r = rec(i + 1, ken + 1, 0) % mod;
    return r;
}

int main() {
    cin >> N;
    mset(dp, -1);
    cout << rec(0, 0, 1) % mod << endl;
    return 0;
}
0