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: 50.0% 4 / 0 / 8

test/cpv/aizu-itp1/itp1_6_d.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_6_D
2 #include "../../../src/lalg/ds/mat/lib.hpp"
3
4 using namespace tifa_libs;
5 18 int main() {
6
1/2
✓ Branch 2 taken 18 times.
✗ Branch 3 not taken.
18 std::cin.tie(nullptr)->std::ios::sync_with_stdio(false);
7 u32 n, m;
8
2/4
✓ Branch 1 taken 18 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 18 times.
✗ Branch 5 not taken.
18 std::cin >> n >> m;
9 18 matrix<u64> a(n, m), b(m, 1);
10 18 std::cin >> a >> b;
11
1/2
✓ Branch 3 taken 18 times.
✗ Branch 4 not taken.
18 std::cout << a * b << '\n';
12 18 return 0;
13 18 }
14