Submission #13894

#TimeUsernameProblemLanguageResultExecution timeMemory
13894minsu최댓값 (tutorial2)C++14
Compilation error
0 ms0 KiB
#include <algoithm> using namespace std; int GetMax(int N, int *A){ int ret=0; for(int i=0;i<N;i++) ret=max(ret,A[i]); return ret; }

Compilation message (stderr)

tutorial2.cpp:1:20: fatal error: algoithm: 그런 파일이나 디렉터리가 없습니다
 #include <algoithm>
                    ^
compilation terminated.