매우 간단한 문제이다. 문제가 길어서 그렇지 그냥 간단한 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

 

20673번: Covid-19

The input consists of two lines. The first line contains an integer p (0 ⩽ p ⩽ 1000), showing the average number of new cases per day in every one million population in Hana’s city over the past two weeks. The second line contains an integer q (0 ⩽

www.acmicpc.net

 

+ Recent posts