Submission #1801

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

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

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