Submission #17097

#TimeUsernameProblemLanguageResultExecution timeMemory
17097pscheol최댓값 (tutorial2)C11
20 / 100
0 ms1084 KiB
GetMax(int N, int *A) {
	int i = 0;
	int max = A[N];
	while (N-- != 0) {
		max = max > A[N] ? max : A[N];
	}
	return max;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...