# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
17101 | 2015-11-05T17:15:33 Z | pscheol | 짝수 정렬 (tutorial3) | C++ | 0 ms | 0 KB |
sort_even(int N, int *A) { int i; for (i = 0; i < N; i++) { if (A[i] % 2 == 0) Report(A[i]); } }