최대 1 분 소요

[백준 1085번] 직사각형에서 탈출

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.Scanner;
 
public class 백준_손수경_정답_1085 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        int w = sc.nextInt();
        int h = sc.nextInt();
        int ans = Math.min(Math.min(w - x, x), Math.min(h - y, y));
        System.out.println(ans);
    }
}
 
cs

풀이 방법

Math클래스의 min 메서드 사용!

댓글남기기