GCC Code Coverage Report


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

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