GCC Code Coverage Report


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

test/cpv/library-checker-sample/aplusb.fastio.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/aplusb
2 #include "../../../src/io/fastin/lib.hpp"
3 #include "../../../src/io/fastout/lib.hpp"
4
5 using namespace tifa_libs;
6 12 int main() {
7 u64 s, t;
8 12 fin_uint >> s >> t;
9 12 fout << s + t;
10 12 return 0;
11 }
12