結果

問題 No.314 ケンケンパ
ユーザー aitdccdaitdccd
提出日時 2017-11-25 03:26:42
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 410 bytes
コンパイル時間 1,339 ms
コンパイル使用メモリ 157,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 12:04:53
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 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 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define ll long long
const ll MOD = 1e9 + 7;

ll ff[101];
ll f(int n) {
    if (ff[n]) return ff[n];
    if (n == 1) return 1;
    if (n == 2) return 2;
    if (n == 3) return 2;
    if (n == 4) return 3;
    if (n == 5) return 4;
    return ff[n] = (f(n - 1) + f(n - 5)) % MOD;
}

int main() {
    int n;
    cin >> n;
    cout << f(n) << endl;
    return 0;
}
0