test/cpv/library-checker-set_power_series/exp_of_set_power_series.mintd-md64.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/md64/lib.hpp" | ||
| 12 | |||
| 13 | using namespace tifa_libs; | ||
| 14 | using mint = mint_md64<__LINE__>; | ||
| 15 | |||
| 16 | 13 | int main() { | |
| 17 | 13 | mint::set_mod(MOD); | |
| 18 | u32 n; | ||
| 19 | 13 | tifa_libs::fin_uint >> n; | |
| 20 |
1/2✓ Branch 1 taken 13 times.
✗ Branch 2 not taken.
|
13 | vec<mint> b(1 << n); |
| 21 | 13 | tifa_libs::fin_uint >> b; | |
| 22 |
1/2✓ Branch 1 taken 13 times.
✗ Branch 2 not taken.
|
13 | tifa_libs::fout << tifa_libs::exp_fpssps(n, b) << '\n'; |
| 23 | 13 | return 0; | |
| 24 | 13 | } | |
| 25 |