結果
問題 | No.2506 Sum of Weighted Powers |
ユーザー | suisen |
提出日時 | 2023-03-22 00:00:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,746 bytes |
コンパイル時間 | 2,282 ms |
コンパイル使用メモリ | 117,020 KB |
実行使用メモリ | 12,228 KB |
最終ジャッジ日時 | 2024-09-22 23:44:24 |
合計ジャッジ時間 | 7,030 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <atcoder/modint> using mint = atcoder::modint998244353; namespace atcoder { std::istream& operator>>(std::istream& in, mint &a) { long long e; in >> e; a = e; return in; } std::ostream& operator<<(std::ostream& out, const mint &a) { out << a.val(); return out; } } // namespace atcoder #include <atcoder/convolution> mint solve(const int n, const mint x, const std::vector<mint> &a, const std::vector<mint> &b, const std::vector<mint> &c) { if (x == 0) { mint ans = 0; for (int i = 0; i <= n; ++i) { ans += a[i] * b[i] * c[0]; } for (int i = 1; i <= n; ++i) { ans += a[i] * b[0] * c[i]; } return ans; } auto t = [&](long long k) { return (k - 1) * k * (k + 1) / 3; }; const mint inv_x = x.inv(); std::vector<mint> f(n + 1), g(n + 1); for (int i = 0; i <= n; ++i) { const mint pow_inv_x = inv_x.pow(t(i)); f[i] = b[i] * pow_inv_x; g[i] = c[i] * pow_inv_x; } const std::vector<mint> h = atcoder::convolution(f, g); mint ans = 0; for (int i = 0; i <= n; ++i) { const mint pow_x = x.pow(t(i)); ans += a[i] * pow_x * h[i]; } return ans; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int n, x; std::cin >> n >> x; std::vector<mint> a(n + 1), b(n + 1), c(n + 1); for (int i = 0, v; i <= n; ++i) std::cin >> v, a[i] = v; for (int i = 0, v; i <= n; ++i) std::cin >> v, b[i] = v; for (int i = 0, v; i <= n; ++i) std::cin >> v, c[i] = v; std::cout << solve(n, x, a, b, c).val() << std::endl; return 0; }