test/cpv/library-checker-sample/many_aplusb_128bit.ios128.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/many_aplusb_128bit | ||
| 2 | #include "../../../src/io/i128/lib.hpp" | ||
| 3 | |||
| 4 | using namespace tifa_libs; | ||
| 5 | 10 | int main() { | |
| 6 |
1/2✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
|
10 | std::cin.tie(nullptr)->std::ios::sync_with_stdio(false); |
| 7 | u32 t; | ||
| 8 |
1/2✓ Branch 1 taken 10 times.
✗ Branch 2 not taken.
|
10 | std::cin >> t; |
| 9 |
2/2✓ Branch 0 taken 4352864 times.
✓ Branch 1 taken 10 times.
|
4352874 | while (t--) { |
| 10 | i128 a, b; | ||
| 11 | 4352864 | std::cin >> a >> b; | |
| 12 |
1/2✓ Branch 2 taken 4352864 times.
✗ Branch 3 not taken.
|
4352864 | std::cout << a + b << '\n'; |
| 13 | } | ||
| 14 | 10 | return 0; | |
| 15 | } | ||
| 16 |