test/cpv/library-checker-big_integer/multiplication_of_big_integers.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/multiplication_of_big_integers | ||
| 2 | #include "../../../src/io/fastin/lib.hpp" | ||
| 3 | #include "../../../src/io/fastout/lib.hpp" | ||
| 4 | #include "../../../src/math/ds/mpi/lib.hpp" | ||
| 5 | |||
| 6 | using namespace tifa_libs; | ||
| 7 | 20 | int main() { | |
| 8 | u32 t; | ||
| 9 | 20 | fin_uint >> t; | |
| 10 |
2/2✓ Branch 0 taken 220049 times.
✓ Branch 1 taken 20 times.
|
220069 | while (t--) { |
| 11 | 220049 | mpi a, b; | |
| 12 | 220049 | fin_uint >> a >> b; | |
| 13 | 220049 | fout << a * b << '\n'; | |
| 14 | 220049 | } | |
| 15 | 20 | return 0; | |
| 16 | } | ||
| 17 |