[문제설명]
간단하게 rating점수를 구간에 따라서 Division 1부터 Division 4까지 출력하는 문제이다.
t = int(input())
for _ in range(t):
x = int(input())
if 1900 <= x:
print('Division 1')
elif 1600<= x <= 1899:
print('Division 2')
elif 1400 <= x <= 1599:
print('Division 3')
else:
print('Division 4')
'코드포스 - Codeforces' 카테고리의 다른 글
Codeforces Round #801 (Div. 2) A. Subrectangle Guess (0) | 2022.06.20 |
---|---|
Educational Codeforces Round 130 (Div. 2)) A. Parkway Walk (0) | 2022.06.13 |
코드포스 (Codeforces Round #765(Div.2)) A. Ancient Civilization (0) | 2022.01.19 |
코드포스 (Codeforces Round #764 (Div. 3)) A. Plus One on the Subset (0) | 2022.01.18 |
코드포스 (Hello 2022) A. Stable Arrangement of Rooks (0) | 2022.01.05 |
댓글