結果

問題 No.2817 Competition
ユーザー risujirohrisujiroh
提出日時 2024-07-19 23:10:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 4,614 ms
コンパイル使用メモリ 287,780 KB
実行使用メモリ 47,508 KB
最終ジャッジ日時 2024-07-19 23:10:23
合計ジャッジ時間 9,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 352 ms
47,376 KB
testcase_04 AC 353 ms
47,508 KB
testcase_05 AC 340 ms
47,504 KB
testcase_06 AC 340 ms
47,504 KB
testcase_07 AC 327 ms
47,504 KB
testcase_08 AC 37 ms
8,576 KB
testcase_09 AC 74 ms
13,572 KB
testcase_10 AC 112 ms
19,184 KB
testcase_11 AC 194 ms
30,428 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 83 ms
15,108 KB
testcase_14 AC 127 ms
21,284 KB
testcase_15 AC 65 ms
12,800 KB
testcase_16 AC 137 ms
22,628 KB
testcase_17 AC 91 ms
16,252 KB
testcase_18 AC 340 ms
47,504 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 <bits/stdc++.h>

#include <atcoder/convolution>

using Int = int64_t;

using Mint = atcoder::modint998244353;

void Solve() {
  Int n;
  std::cin >> n;
  std::vector<std::vector<Mint>> f(2 * n);
  for (Int i = 0; i < n; ++i) {
    Int a;
    std::cin >> a;
    f[n + i] = {1, a};
  }
  for (Int i = n; 1 < i--;) {
    f[i] = atcoder::convolution(f[2 * i], f[2 * i + 1]);
  }
  Mint ans = 0;
  for (Int k = 1; k <= n; ++k) {
    ans += f[1][k] * Mint(k).pow(n - k);
  }
  std::cout << ans.val() << '\n';
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  Solve();
}
0