1. 문제 링크
2. 문제 및 입출력예제
3. 문제 풀이
직사각형의 경계선까지의 거리를 구하는 문제이다.
그래서 주어진 입력과 꼭짓점의 x좌표 y좌표 사이와의 거리를 각각 구하면 된다.
4. 코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int w = sc.nextInt();
int h = sc.nextInt();
int min = x;
if(min > y) min = y;
int temp = Math.abs(x-w);
if(min > temp) min = temp;
temp = Math.abs(y-h);
if(min > temp) min = temp;
System.out.println(min);
}
}
'ALGORITHM' 카테고리의 다른 글
백준 1931 회의실 배정 (Java) (0) | 2023.01.24 |
---|---|
백준 5585 거스름돈 (Java) (0) | 2023.01.23 |
백준 1436 영화감독 숌 (Java) (0) | 2023.01.21 |
백준 1009 분산처리 (Java) (0) | 2023.01.20 |
백준 1152 단어의 개수 (Java) (0) | 2023.01.19 |