test/cpv/library-checker-set_power_series/exp_of_set_power_series.mints-ms64.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #define AUTO_GENERATED | ||
| 2 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/exp_of_set_power_series | ||
| 3 | #include "../../../src/io/container/lib.hpp" | ||
| 4 | #include "../../../src/io/fastin/lib.hpp" | ||
| 5 | #include "../../../src/io/fastout/lib.hpp" | ||
| 6 | #include "../../../src/sps/exp/lib.hpp" | ||
| 7 | |||
| 8 | using namespace tifa_libs; | ||
| 9 | CEXP u32 MOD = 998244353; | ||
| 10 | |||
| 11 | #include "../../../src/math/ds/mint/ms64/lib.hpp" | ||
| 12 | |||
| 13 | using namespace tifa_libs; | ||
| 14 | using mint = mint_ms64<MOD>; | ||
| 15 | |||
| 16 | 13 | int main() { | |
| 17 | u32 n; | ||
| 18 | 13 | tifa_libs::fin_uint >> n; | |
| 19 |
1/2✓ Branch 1 taken 13 times.
✗ Branch 2 not taken.
|
13 | vec<mint> b(1 << n); |
| 20 | 13 | tifa_libs::fin_uint >> b; | |
| 21 |
1/2✓ Branch 1 taken 13 times.
✗ Branch 2 not taken.
|
13 | tifa_libs::fout << tifa_libs::exp_fpssps(n, b) << '\n'; |
| 22 | 13 | return 0; | |
| 23 | 13 | } | |
| 24 |