-Code
g, s, c = map(int, input().split())
total = g * 3 + s * 2 + c
card, treasure = "", ""
if total >= 8:
card = "Province"
elif total >= 5:
card = "Duchy"
elif total >= 2:
card = "Estate"
if total >= 6:
treasure = "Gold"
elif total >= 3:
treasure = "Silver"
elif total >= 0:
treasure = "Copper"
print(f"{card} or {treasure}" if card != "" else treasure)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32193번 승강장의 깊이 (0) | 2024.09.01 |
---|---|
[백준/파이썬] 18156번 Black and White (0) | 2024.08.31 |
[백준/파이썬] 5340번 Secret Location (0) | 2024.08.29 |
[백준/파이썬] 9771번 Word Searching (0) | 2024.08.28 |
[백준/파이썬] 6903번 Trident (0) | 2024.08.27 |