공부하기/백준

[Java] 백준 풀기 21591 - Laptop Sticker

XEV 2023. 3. 24. 23:46

자바 백준 21591번

브론즈4

https://www.acmicpc.net/problem/21591

 

21591번: Laptop Sticker

The single line of input contains four integers $w_c$, $h_c$, $w_s$ and $h_s$ ($1 \le w_c, h_c, w_s, h_s \le 1,000$), where $w_c$ is the width of your new laptop computer, $h_c$ is the height of your new laptop computer, $w_s$ is the width of the laptop s

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 수학, 구현, 사칙연산

 

 

 

 

 

문제 풀기

랩탑 면적의 안쪽에 스티커를 붙일 수 있어야 한다. 이 스티커는 아래, 위, 양 옆 끝으로 부터 1 cm  씩 공간을 남기고 붙여야한다.

랩탑의 가로, 세로가 주어졌을때 이 값에서 부터 -2 를 한 결과가 스티커의 가로, 세로보다 크거나 같으면 조건을 만족한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {

        Scanner sc = new Scanner(System.in);
        
        int wc = sc.nextInt();
        int hc = sc.nextInt();
        
        int ws = sc.nextInt();
        int hs = sc.nextInt();
        
        if ( ws <= wc - 2 && hs <= hc - 2) {
            System.out.print(1);
        }
        else {
            System.out.print(0);
        }
        
    }
}