-Code
temp, oxy, oce = -30, 0, 0
for _ in range(int(input())):
type, change = input().split()
change = int(change[1])
if type == "temperature":
temp += change
elif type == "oxygen":
oxy += change
elif type == "ocean":
oce += change
print("liveable"
if temp >= 8 and oxy >= 14 and oce >= 9
else "not liveable")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 6812번 Good times (0) | 2024.12.13 |
---|---|
[백준/파이썬] 32682번 Which Number Kind Is It? (1) | 2024.12.12 |
[백준/파이썬] 32800번 Bus Assignment (0) | 2024.12.10 |
[백준/파이썬] 32929번 UOS 문자열 (1) | 2024.12.09 |
[백준/파이썬] 32777번 가희와 서울 지하철 2호선 (0) | 2024.12.08 |