-Code
box, cnt = 0, 0
for _ in range(int(input())):
box_type, w, h, l = input().split()
w, h, l = int(w), int(h), int(l)
if box_type == 'A':
cnt += (w // 12) * (h // 12) * (l // 12)
box += 1000
else:
box += 6000
box += cnt * 500
price = cnt * 4000
print(box)
print(price)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32458번 Just Round Down (0) | 2024.10.07 |
---|---|
[백준/파이썬] 32384번 사랑은 고려대입니다 (0) | 2024.10.06 |
[백준/파이썬] 14039번 Magic Squares (0) | 2024.10.04 |
[백준/파이썬] 11606번 Egg Drop (2) | 2024.10.03 |
[백준/파이썬] 24805번 Climbing Worm (0) | 2024.10.02 |