# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19216 | 2016-02-21T09:30:39 Z | anrhks1212 | 짝수 정렬 (tutorial3) | C++ | 0 ms | 0 KB |
void sort_even(int N, int *A) { int i; for(i = 0; i < N; i++) { if(A[i] % 2 == 0) Report(A[i]); } }
# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19216 | 2016-02-21T09:30:39 Z | anrhks1212 | 짝수 정렬 (tutorial3) | C++ | 0 ms | 0 KB |
void sort_even(int N, int *A) { int i; for(i = 0; i < N; i++) { if(A[i] % 2 == 0) Report(A[i]); } }