본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 29724번 🍎📦 '사과상자'에 들어있는 것은 무엇? 현금?

by 현장 2024. 10. 5.

-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)