CF32C.Flea

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It is known that fleas in Berland can jump only vertically and horizontally, and the length of the jump is always equal to ss centimeters. A flea has found herself at the center of some cell of the checked board of the size n×mn×m centimeters (each cell is 1×11×1 centimeters). She can jump as she wishes for an arbitrary number of times, she can even visit a cell more than once. The only restriction is that she cannot jump out of the board.

The flea can count the amount of cells that she can reach from the starting position (x,y)(x,y) . Let's denote this amount by dx,yd_{x,y} . Your task is to find the number of such starting positions (x,y)(x,y) , which have the maximum possible value of dx,yd_{x,y} .

输入格式

The first line contains three integers nn , mm , ss ( 1<=n,m,s<=1061<=n,m,s<=10^{6} ) — length of the board, width of the board and length of the flea's jump.

输出格式

Output the only integer — the number of the required starting positions of the flea.

输入输出样例

  • 输入#1

    2 3 1000000
    

    输出#1

    6
    
  • 输入#2

    3 3 2
    

    输出#2

    4
    
首页