Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- ChatGPT
- AI 경진대회
- Git
- gs25
- 편스토랑 우승상품
- PYTHON
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- Kaggle
- 코로나19
- 더현대서울 맛집
- 우분투
- 프로그래머스 파이썬
- 자연어처리
- ubuntu
- 편스토랑
- SW Expert Academy
- 파이썬
- hackerrank
- dacon
- Docker
- 백준
- 프로그래머스
- leetcode
- github
- 캐치카페
- 맥북
- 데이콘
- programmers
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 21612번 : Boiling Water (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Boiling Water 입니다.
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
🧑🏻💻 코드 ( Solution )
def get_atmospheric_pressure(B):
return 5 * B - 400
def boiling_water(B):
atmospheric_pressure = get_atmospheric_pressure(B=B)
answer = 0
if atmospheric_pressure > 100:
answer = -1
elif atmospheric_pressure < 100:
answer = 1
return atmospheric_pressure, answer
if __name__ == "__main__":
B = int(input())
atmospheric_pressure, answer = boiling_water(B=B)
print(atmospheric_pressure)
print(answer)
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 9948번 : Have you had your birthday yet? (Python) (0) | 2022.11.17 |
---|---|
[BaekJoon] 6763번 : Speed fines are not fine! (Python) (0) | 2022.11.16 |
[BaekJoon] 5928번 : Contest Timing (Python) (0) | 2022.11.14 |
[BaekJoon] 16099번 : Larger Sport Facility (Python) (0) | 2022.11.13 |
[BaekJoon] 1551번 : 수열의 변화 (Python) (0) | 2022.11.12 |