Submission #3120

# Submission time Handle Problem Language Result Execution time Memory
3120 2013-08-25T12:50:02 Z beegle20 최댓값 (tutorial2) C++
Compilation error
0 ms 0 KB
#include "grader.h"
int GetMax(int N, int* arr)
{
  int max=0;
  for(int i=0;i<N;i++)if(max<arr[i]) max=arr[i];
  return max;
}

Compilation message

tutorial2.cpp:1:20: fatal error: grader.h: No such file or directory
compilation terminated.