Submission #1994

#TimeUsernameProblemLanguageResultExecution timeMemory
1994kanglib최댓값 (tutorial2)C++98
0 / 100
0 ms1088 KiB
int Max = 1;

int GetMax(int N, int *A) {
    while (N) {
        if (A[N] > Max) {
            Max = A[N];
        }
        N--;
    }
    return Max;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...