結果

問題 No.2817 Competition
ユーザー hitonanodehitonanode
提出日時 2024-07-19 22:47:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 142,036 KB
実行使用メモリ 9,484 KB
最終ジャッジ日時 2024-07-19 22:47:07
合計ジャッジ時間 5,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 230 ms
9,476 KB
testcase_04 AC 230 ms
9,352 KB
testcase_05 AC 230 ms
9,484 KB
testcase_06 AC 257 ms
9,476 KB
testcase_07 AC 229 ms
9,352 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 51 ms
5,376 KB
testcase_10 AC 95 ms
6,072 KB
testcase_11 AC 121 ms
6,672 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 55 ms
5,376 KB
testcase_14 AC 100 ms
6,148 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 104 ms
6,336 KB
testcase_17 AC 57 ms
5,376 KB
testcase_18 AC 257 ms
9,352 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

#include <atcoder/convolution>
#include <atcoder/modint>

using mint = atcoder::modint998244353;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    int N;
    cin >> N;

    vector<long long> A(N);
    for (auto &a : A) cin >> a;

    auto rec = [&](auto &&self, int l, int r) -> vector<mint> {
        if (l + 1 == r) return {1, A.at(l)};
        const int c = (l + r) / 2;
        return atcoder::convolution(self(self, l, c), self(self, c, r));
    };

    vector<mint> dp = rec(rec, 0, N);

    mint ret = 0;
    for (int n = 1; n <= N; ++n) ret += dp.at(n) * mint(n).pow(N - n);

    cout << ret.val() << '\n';
}
0