📌 핵심로직(유형 파악)

📌 소스코드 (My Solution)

def solution(box, n):
    answer = (box[0]//n) * (box[1]//n) * (box[2]//n)
    return answer

📌 코드 회고