# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4963 | 2014-01-23T16:04:48 Z | lingxiang | 짝수 정렬 (tutorial3) | C++ | 0 ms | 0 KB |
#include "grader.h" #include<algorithm> void sort_even(int N,int a[]){ sort(a,a+N); for(int i=0;i<N;i++) if(a[i]%2==0) Report(a[i]); }
# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4963 | 2014-01-23T16:04:48 Z | lingxiang | 짝수 정렬 (tutorial3) | C++ | 0 ms | 0 KB |
#include "grader.h" #include<algorithm> void sort_even(int N,int a[]){ sort(a,a+N); for(int i=0;i<N;i++) if(a[i]%2==0) Report(a[i]); }