# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4599 | 2013-11-10T02:11:29 Z | Namnamseo | 짝수 정렬 (tutorial3) | C++ | 0 ms | 1200 KB |
#include "grader.h" #include <algorithm> void sort_even(int n,int *a){ int sorted[n]; int i,j=0; for(i=0;i<n;i++) { if(!(a[i]%2)) { sorted[j++]=a[i]; } } std::sort(sorted,sorted+j-1); for(i=0;i<j;i++) { Report(sorted[i]); } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1200 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1200 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |