-Code
from math import ceil
a, b = map(int, input().split())
d = int(input())
print(ceil(a * b / 12) * d)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32604번 Jumbled Scoreboards (0) | 2024.11.01 |
---|---|
[백준/파이썬] 26336번 Are We Stopping Again? (0) | 2024.10.31 |
[백준/파이썬] 32585번 Building Pyramids (1) | 2024.10.29 |
[백준/파이썬] 8387번 Dyslexia (0) | 2024.10.28 |
[백준/파이썬] 12571번 Rope Intranet (Small) (0) | 2024.10.27 |