# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
717858 | 2023-04-02T16:25:35 Z | EntityPlantt | 짝수 정렬 (tutorial3) | C++14 | 0 ms | 0 KB |
#include <algorithm> void sort_even(int n, int a[]) { std::sort(a, a + n); for (int i = 0; i < n; i++) if (!(a[i] & 1)) Report(a[i]); }