제출 #159300

#제출 시각아이디문제언어결과실행 시간메모리
159300socho최댓값 (tutorial2)C++14
100 / 100
3 ms504 KiB
#include "bits/stdc++.h"
using namespace std;
 
int GetMax(int N, int *A) {
	int res = INT_MIN;
	for(int i=0; i<N; i++) {
		res = max(res, A[i]);
	}
	return res;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…