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 | 31 |
Tags
- 편스토랑
- 편스토랑 우승상품
- 데이콘
- 프로그래머스
- AI 경진대회
- 캐치카페
- gs25
- programmers
- 파이썬
- 더현대서울 맛집
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- hackerrank
- ChatGPT
- 금융문자분석경진대회
- dacon
- PYTHON
- 자연어처리
- github
- SW Expert Academy
- leetcode
- Baekjoon
- 우분투
- ubuntu
- Git
- 백준
- 코로나19
- 맥북
- Docker
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 21612번 : Boiling Water (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Boiling Water 입니다.
🧑🏻💻 코드 ( 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)
'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 |
Comments