제출 #17096

#제출 시각아이디문제언어결과실행 시간메모리
17096pscheol최댓값 (tutorial2)C11
100 / 100
0 ms1084 KiB
GetMax(int N, int *A) { int i = 0; int max = A[0]; for (i = 0; i < N; i++) { max = max > A[i] ? max : A[i]; } return max; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...