import java.io.*;
import java.util.*;
class Main{
static BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
public static void main(String args[]) throws Exception {
int N=Integer.parseInt(br.readLine());
int[] arr=new int[N];
String str[]=br.readLine().split(" ");
for(int i=0;i<str.length;i++) {
arr[i]=Integer.parseInt(str[i]);
}
Arrays.sort(arr);
System.out.println(arr[arr.length-1]);
}
}
'프로그래밍 문제 > BOJ(백준 온라인 저지)' 카테고리의 다른 글
백준 2750 / C / 수 정렬하기 (0) | 2020.10.14 |
---|---|
[BOJ 11725번] 트리의 부모 찾기(JAVA) (0) | 2020.10.09 |
[BOJ 1003번] 피보나치 함수(JAVA) (0) | 2020.10.07 |
[BOJ 14888번] 연산자 끼워넣기(JAVA) (0) | 2020.10.06 |
백준 11654 / 아스키 코드 / C (0) | 2020.10.06 |