[백준] 1085번 직사각형에서 탈출 - Java
문제 출처
※ 소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
//input
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
int w = Integer.parseInt(st.nextToken());
int h = Integer.parseInt(st.nextToken());
int ans = Math.min(Math.abs(x - w), x);
int ans2 = Math.min(Math.abs(y - h), y);
System.out.println(Math.min(ans, ans2));
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2914번 저작권 - Java (0) | 2021.03.04 |
---|---|
[백준] 2675번 문자열 반복 - Java (0) | 2021.03.04 |
[백준] 1181번 단어정렬(반례) - Java (0) | 2021.03.04 |
[백준] 1436번 영화감독 숌 - Java (0) | 2021.03.04 |
[백준] 1157번 단어 공부 - Java (0) | 2021.03.03 |