結果

問題 No.980 Fibonacci Convolution Hard
ユーザー lorent_kyoprolorent_kyopro
提出日時 2021-04-18 14:50:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 207,092 KB
実行使用メモリ 13,260 KB
最終ジャッジ日時 2024-07-04 04:33:36
合計ジャッジ時間 7,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
11,896 KB
testcase_01 AC 80 ms
12,176 KB
testcase_02 AC 82 ms
11,632 KB
testcase_03 AC 83 ms
12,860 KB
testcase_04 AC 81 ms
12,136 KB
testcase_05 AC 83 ms
11,900 KB
testcase_06 AC 86 ms
12,496 KB
testcase_07 AC 85 ms
12,108 KB
testcase_08 AC 84 ms
12,924 KB
testcase_09 AC 84 ms
12,624 KB
testcase_10 AC 84 ms
12,644 KB
testcase_11 AC 84 ms
12,284 KB
testcase_12 AC 81 ms
11,732 KB
testcase_13 AC 83 ms
12,084 KB
testcase_14 AC 79 ms
13,108 KB
testcase_15 AC 83 ms
13,260 KB
testcase_16 AC 36 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

__attribute__((constructor))
void fast_io() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    long long p;
    std::cin >> p;
    std::vector<mint> b{0, 0, 1, 2*p}, c{2*p, 2 - p*p, -2*p, -1};
    int q;
    std::cin >> q;
    while (q--) {
        size_t x;
        std::cin >> x;
        x -= 2;
        while (b.size() <= x) {
            mint tmp = 0;
            for (size_t i = 0; i < c.size(); ++i) {
                tmp += c[i] * b[b.size() - 1 - i];
            }
            b.push_back(tmp);
        }
        std::cout << b[x].val() << '\n';
    }
}
0