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