GCC Code Coverage Report


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

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