제출 #16064

#제출 시각아이디문제언어결과실행 시간메모리
16064paruru최댓값 (tutorial2)C++98
100 / 100
0 ms1084 KiB
#define oo 987654321
int max_value=-oo;
int GetMax(int N, int *A){
    for(int i=0;i<N;i++)
    {
        if(A[i]>max_value)
            max_value=A[i];
    }
    return max_value;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...