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.fastio.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/many_aplusb
2 #include "../../../src/io/fastin/lib.hpp"
3 #include "../../../src/io/fastout/lib.hpp"
4
5 using namespace tifa_libs;
6 9 int main() {
7 u32 t;
8 9 fin_uint >> t;
9
2/2
✓ Branch 0 taken 6852862 times.
✓ Branch 1 taken 9 times.
6852871 while (t--) {
10 u64 a, b;
11 6852862 fin_uint >> a >> b;
12 6852862 fout << a + b << '\n';
13 }
14 9 return 0;
15 }
16