python
2024-07-19 12:59:10
发布于:上海
99阅读
0回复
0点赞
import math
n, m, a = map(int, input().split())
tiles_needed = math.ceil(n / a) * math.ceil(m / a)
print(tiles_needed)
这里空空如也
2024-07-19 12:59:10
发布于:上海
import math
n, m, a = map(int, input().split())
tiles_needed = math.ceil(n / a) * math.ceil(m / a)
print(tiles_needed)
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个