제출 #151812

#제출 시각아이디문제언어결과실행 시간메모리
151812erebos최댓값 (tutorial2)C++17
100 / 100
2 ms632 KiB
#include <bits/stdc++.h>
using namespace std;

int GetMax(int N, int *A){
	int ans=-1;
	for(int i=0; i<N; ++i){
		ans=max(ans, A[i]);
	}
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...