-Code
while True:
s, w, p = map(float, input().split())
if s == w == p:
break
res = []
if s <= 4.5 and w >= 150 and p >= 200:
res.append("Wide Receiver")
if s <= 6 and w >= 300 and p >= 500:
res.append("Lineman")
if s <= 5.0 and w >= 200 and p >= 300:
res.append("Quarterback")
if len(res) == 0:
res.append("No positions")
print(*res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 9288번 More Dice (0) | 2024.07.24 |
---|---|
[백준/파이썬] 30143번 Cookie Piles (0) | 2024.07.23 |
[백준/파이썬] 29534번 Буквы и весы (0) | 2024.07.21 |
[백준/파이썬] 25849번 Briefcases Full of Money (0) | 2024.07.20 |
[백준/파이썬] 32089번 部員の変遷 (0) | 2024.07.19 |