test/cpv/aizu-alds1/alds1_6_a.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/1/ALDS1/all/ALDS1_6_A | ||
| 2 | #include "../../../src/fast/rsort32/lib.hpp" | ||
| 3 | #include "../../../src/io/container/lib.hpp" | ||
| 4 | |||
| 5 | using namespace tifa_libs; | ||
| 6 | 10 | int main() { | |
| 7 |
1/2✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
|
10 | std::cin.tie(nullptr)->std::ios::sync_with_stdio(false); |
| 8 | u32 n; | ||
| 9 |
1/2✓ Branch 1 taken 10 times.
✗ Branch 2 not taken.
|
10 | std::cin >> n; |
| 10 |
1/2✓ Branch 1 taken 10 times.
✗ Branch 2 not taken.
|
10 | vecu a(n); |
| 11 | 10 | std::cin >> a; | |
| 12 | 10 | rsort32(a); | |
| 13 |
1/2✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
|
10 | std::cout << a << '\n'; |
| 14 | 10 | return 0; | |
| 15 | 10 | } | |
| 16 |