답안 #1294

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1294 2013-07-01T09:54:05 Z yourID 짝수 정렬 (tutorial3) C++
0 / 100
0 ms 912 KB
#include"grader.h"

void sort_even(int N,int *A)
{
  if(A[0]%2==0&&A[1]%2==0)
  {
    if(A[0]<A[1])
    {
      Report(A[0]);
      Report(A[1]);
    }
    else
    {
      Report(A[1]);
      Report(A[0]);
    }
  }
  else
  {
    if(A[0]%2==0)Report(A[0]);
    if(A[1]%2==0)Report(A[1]);
  }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 912 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 912 KB Output isn't correct
2 Halted 0 ms 0 KB -