#include"grader.h"
#include<cstdio>
#include<algorithm>
int sort_even(int N,int *A)
{
int B[100]={},t=0,i;
for(i=0;i<N;i++)
{
if(A[i]%2==0)
{
B[t++]=A[i];
}
std::sort(B,B+t);
for(i=0;i<t;i++)Report(B[i]);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
1088 KB |
gettid (syscall #186) was called by the program (disallowed syscall) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
1088 KB |
gettid (syscall #186) was called by the program (disallowed syscall) |
2 |
Halted |
0 ms |
0 KB |
- |