매우 간단한 문제이다. 문제가 길어서 그렇지 그냥 간단한 if-else로 해결하는 구현문제.
다음과 같이 코드를 짜면 된다.
1
2
3
4
5
6
7
8
9
10
|
p_avg_case = int(input())
q_avg_newHospital = int(input())
if p_avg_case <= 50 and q_avg_newHospital <= 10:
print("White")
elif q_avg_newHospital > 30:
print("Red")
else:
print("Yellow")
|
cs |
출처: https://www.acmicpc.net/problem/20673
'코딩 문제풀이 및 연습 > Python 연습' 카테고리의 다른 글
[백준]2920_음계 파이썬 파이썬 (정렬과 copy활용) (0) | 2021.07.16 |
---|---|
sys.stdin.readline()을 사용해야하는 이유 ... [백준]15372_A Simple Problem (0) | 2021.07.16 |
[백준]20254_Site Score 파이썬 (0) | 2021.07.16 |
[백준]13597_Tri-du 파이썬 (0) | 2021.07.16 |
[백준]11367_Report Card Time 파이썬 (str과 int를 space로 나눠서 동시에 입력받기) (0) | 2021.07.16 |