답안 #250131

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
250131 2020-07-17T04:25:54 Z linear00000 최댓값 (tutorial2) C++14
0 / 100
1 ms 256 KB
#include<iostream>
 
int GetMax(int n, int* A) {
  int a = -1;
  for (int i=0; i<n; i++) if (a > A[i]) a = A[i];
  return a;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -