Dev.baelanche

[백준 2959] 거북이 본문

Data Structure & Algorithm/PS - JAVA

[백준 2959] 거북이

baelanche 2019. 5. 28. 20:58
반응형

 

정렬을 오름차순 혹은 내림차순으로 해주고

 

큰 수 > 작은 수 > 큰 수 > 작은 수 순으로 배치하여 넓이를 구하면 된다.

 

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int a[] = new int[4];
        for(int i=0; i<4; i++)
            a[i] = sc.nextInt();
        Arrays.sort(a);
        
        int width = a[3] - (a[3] - a[2]);
        int height = a[1] - (a[1] - a[0]);
        
        System.out.println(width * height);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 11004] K번째 수  (0) 2019.05.29
[백준 1181] 단어 정렬  (0) 2019.05.29
[백준 11650] 좌표 정렬하기  (0) 2019.05.28
[백준 1269] 대칭 차집합  (0) 2019.05.28
[백준 4256] 트리  (0) 2019.05.28
Comments