Submission #1271775

#TimeUsernameProblemLanguageResultExecution timeMemory
1271775cbnk32_tuandung최댓값 (tutorial2)C++17
100 / 100
0 ms328 KiB
#include <bits/stdc++.h>
using namespace std;
int GetMax(int N, int *A){
	int res = -1e9;
	for (int i = 0; i < N; ++i) res = max(res, A[i]);
	return res;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...