test/cpv/aizu-cgl/cgl_7_b.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: ERROR 0.000001 | ||
| 2 | // competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/library/4/CGL/all/CGL_7_B | ||
| 3 | #include "../../../src/geo2d/ds/t/lib.hpp" | ||
| 4 | #include "../../../src/geo2d/tcenter/i/lib.hpp" | ||
| 5 | |||
| 6 | using namespace tifa_libs; | ||
| 7 | using tri = triangle<double>; | ||
| 8 | |||
| 9 | 32 | int main() { | |
| 10 |
1/2✓ Branch 2 taken 32 times.
✗ Branch 3 not taken.
|
32 | std::cin.tie(nullptr)->std::ios::sync_with_stdio(false); |
| 11 |
1/2✓ Branch 1 taken 32 times.
✗ Branch 2 not taken.
|
32 | std::cout << std::fixed << std::setprecision(12); |
| 12 | tri t; | ||
| 13 | 32 | std::cin >> t; | |
| 14 |
3/6✓ Branch 3 taken 32 times.
✗ Branch 4 not taken.
✓ Branch 7 taken 32 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 32 times.
✗ Branch 11 not taken.
|
32 | std::cout << center_I(t) << ' ' << radius_I(t) << '\n'; |
| 15 | 32 | return 0; | |
| 16 | } | ||
| 17 |