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 |