Submission #31360

#TimeUsernameProblemLanguageResultExecution timeMemory
31360topology최댓값 (tutorial2)C++14
100 / 100
0 ms2016 KiB
#include <bits/stdc++.h>
using namespace std;

int GetMax(int n, int *a) {
  int m = 0;
  for (int i = 0; i < n; i++) {
    m = max(m, a[i]);
  }
  return m;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...