728x90
반응형
단순 구현 문제이다.
for _ in range(3):
s = sum(map(int, input().split()))
if s == 4:
print("E")
elif s == 3:
print("A")
elif s == 2:
print("B")
elif s == 1:
print("C")
else:
print("D")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2506번 점수계산(python) (0) | 2021.02.11 |
---|---|
백준 알고리즘 2501번 약수 구하기(python) (0) | 2021.02.11 |
백준 알고리즘 2476번 주사위 게임(python) (0) | 2021.02.11 |
백준 알고리즘 2460번 지능형 기차 2(python) (0) | 2021.02.11 |
백준 알고리즘 2455번 지능형 기차(python) (0) | 2021.02.11 |