본문 바로가기
Algorithm

[구현/수학] 백준 21591 Laptop Sticker - 파이썬(Python)

by jangThang 2022. 9. 29.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    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

     

     

     

    2. 문제 풀이

     노트북, 스티커의 너비와 높이가 주어집니다. 스티커를 붙이려면, 여백이 1cm 정도가 남아야 합니다.

     

     

     

    3. 코드

    # 입력
    # 노트북 너비, 높이 / 스티커 너비, 높이
    wc, hc, ws, hs = map(int, input().split())
    
    # 판별
    if wc >= ws + 2 and hc >= hs + 2:
        print(1)
    else:
        print(0)

     양 옆, 위 아래로 1cm 여백이 필요합니다. 따라서 최소 2cm는 더 커야 붙일 수 있습니다.

     

    star가 되고나서 Tistory

    반응형

    댓글