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/addition_of_big_integers.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/addition_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 22 int main() {
8 u32 t;
9 22 fin_uint >> t;
10
2/2
✓ Branch 0 taken 239882 times.
✓ Branch 1 taken 22 times.
239904 while (t--) {
11 239882 mpi a, b;
12 239882 fin_uint >> a >> b;
13 239882 fout << a + b << '\n';
14 239882 }
15 22 return 0;
16 }
17