제출 #448527

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

int GetMax(int N, int *A){
	int res = 0;
	for(int i=0;i<N;i++)
	{
		res = max(res, A[i]);
	}
	return res;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…