# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145809 | 2019-08-21T07:03:32 Z | wesley2003 | 짝수 정렬 (tutorial3) | C++14 | 2 ms | 376 KB |
#include <stdio.h> #include <assert.h> #include <malloc.h> #include <algorithm> using namespace std; int sort_even(int N,int *A){ int arr[20]={0,},cnt=0; for(int i=0;i<N;i++){ if(A[i]%2==0){ arr[cnt]=A[i]; cnt++; } } sort(arr,arr+cnt); return *arr; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |