본문 바로가기
Algorithm

[구현/수학] 백준 21612 Boiling Water - 파이썬(Python)

by jangThang 2022. 9. 4.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    21612번: Boiling Water

    At sea level, atmospheric pressure is 100 kPa and water begins to boil at 100◦C. As you go above sea level, atmospheric pressure decreases, and water boils at lower temperatures. As you go below sea level, atmospheric pressure increases, and water boils

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     물의 끓는점을 구하고, 1기압보다 낮은지 높은지를 판별합니다.

     

     

     

    3. 코드

    # 입력
    B = int(input())
    
    # 출력
    res = 5*B - 400
    print(res)
    
    if res < 100:
        print(1)
    elif res == 100:
        print(0)
    else:
        print(-1)

     물의 끊는점 P = 5 * B - 400으로 구합니다. 끊는점 100도를 기준으로 높은지 낮은지 판별합니다.

     

    star가 되고나서 Tistory

    반응형

    댓글