| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1271775 | cbnk32_tuandung | 최댓값 (tutorial2) | C++17 | 0 ms | 328 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 time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
