제출 #679

#제출 시각아이디문제언어결과실행 시간메모리
679woqja125최댓값 (tutorial2)C++98
100 / 100
0 ms1088 KiB
int GetMax(int n, int *A) { int max = -999; for(int i=0; i<n; i++) { if(max < A[i]) max = A[i]; } return max; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...