반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
오늘의 기온, 풍속과 함께, 내일의 기온, 풍속이 주어집니다.
3. 코드
# 입력
t1, v1 = map(int, input().split())
t2, v2 = map(int, input().split())
# 출력
if t2 < 0 and v2 >= 10:
print("A storm warning for tomorrow! Be careful and stay home if possible!")
elif t2 < t1:
print("MCHS warns! Low temperature is expected tomorrow.")
elif v1 < v2:
print("MCHS warns! Strong wind is expected tomorrow.")
else:
print("No message")
반응형
'Algorithm' 카테고리의 다른 글
[탐색/DFS] 백준 1167 트리의 지름 - 파이썬(Python) (0) | 2022.10.21 |
---|---|
[구현/수학] 백준 24072 帰省 (Homecoming) - 파이썬(Python) (0) | 2022.10.20 |
[탐색/DFS] 백준 1967 트리의 지름 - 파이썬(Python) (0) | 2022.10.18 |
[구현/수학] 백준 24075 計算 (Calculation) - 파이썬(Python) (0) | 2022.10.17 |
[구현/수학] 백준 21631 Checkers - 파이썬(Python) (0) | 2022.10.16 |
댓글