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