본문 바로가기
Algorithm

cordforces - A. Theatre Square

by Doromi 2018. 1. 24.
728x90
반응형

Theatre Square in the capital city of Berland has a rectangular shape with the size n × mmeters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size a × a.

What is the least number of flagstones needed to pave the Square? It's allowed to cover the surface larger than the Theatre Square, but the Square has to be covered. It's not allowed to break the flagstones. The sides of flagstones should be parallel to the sides of the Square.

Input

The input contains three positive integer numbers in the first line: n,  m and a(1 ≤  n, m, a ≤ 109).

Output

Write the needed number of flagstones.

Examples
input
6 6 4
output
4

 

 cpp나의 솔루션

 

#include<iostream>
#include<cmath>
using namespace std;

int main() {
   int n, m, a;
   int x, y= 0;
   do {
      cin >> n >> m >> a;
   } while (a > pow(10, 9.0) || n<1 || m<1);

   x = n / a;
   if (n%a != 0)
      x++;
   y = m / a;
   if (m%a != 0)
      y++;

   cout << x*y << endl;
}

728x90
반응형

'Algorithm' 카테고리의 다른 글

해시, 해시테이블  (0) 2019.04.18
정렬 알고리즘  (0) 2019.04.18
자료구조와 알고리즘  (0) 2019.04.18
알고리즘 코드는 깃에....  (0) 2019.04.01
cordforces - A. Next Round  (0) 2018.01.24