GCC Code Coverage Report


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

test/cpv/aizu-ntl/ntl_2_e.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/library/6/NTL/all/NTL_2_E
2 #include "../../../src/math/ds/mpi/lib.hpp"
3
4 using namespace tifa_libs;
5 50 int main() {
6
1/2
✓ Branch 2 taken 50 times.
✗ Branch 3 not taken.
50 std::cin.tie(nullptr)->std::ios::sync_with_stdio(false);
7 50 mpi a, b;
8 50 std::cin >> a >> b;
9
1/2
✓ Branch 3 taken 50 times.
✗ Branch 4 not taken.
50 std::cout << a % b << '\n';
10 50 return 0;
11 50 }
12