Submission #1800

#TimeUsernameProblemLanguageResultExecution timeMemory
1800caffeinism7최댓값 (tutorial2)C++98
0 / 100
0 ms1088 KiB
int GetMax(int N, int A[]){
	int max = 0;

	for(int i=1; i<=N; i++){
		if(max < A[i]){
			max = A[i];
		}
	}

	return max;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...