# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
594519 | ai4youej | 최댓값 (tutorial2) | C11 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
int main() {
int n, ans = 0, k;
scanf("%d", &n);
while (n--) {
scanf("%d", &k);
ans = ans < k ? k : ans;
}
printf("%d", ans);
}