test/cpv/library-checker-convolution/convolution_mod_2_64.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/convolution_mod_2_64 | ||
| 2 | #include "../../../src/conv/add/u64/lib.hpp" | ||
| 3 | #include "../../../src/io/container/lib.hpp" | ||
| 4 | #include "../../../src/io/fastin/lib.hpp" | ||
| 5 | #include "../../../src/io/fastout/lib.hpp" | ||
| 6 | |||
| 7 | using namespace tifa_libs; | ||
| 8 | 44 | int main() { | |
| 9 | u32 n, m; | ||
| 10 | 44 | fin_uint >> n >> m; | |
| 11 |
2/4✓ Branch 1 taken 44 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 44 times.
✗ Branch 5 not taken.
|
132 | vecuu a(n), b(m); |
| 12 | 44 | fin_uint >> a >> b; | |
| 13 | 44 | fout << conv_u64(a, b) << '\n'; | |
| 14 | 44 | return 0; | |
| 15 | 44 | } | |
| 16 |