GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 100.0% 7 / 0 / 7
Functions: 100.0% 1 / 0 / 1
Branches: 50.0% 2 / 0 / 4

test/cpv/library-checker-set_power_series/exp_of_set_power_series.mints-bs.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/bs/lib.hpp"
12
13 using namespace tifa_libs;
14 using mint = mint_bs<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