# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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]); }