Preparando MOJI

Repaintings

2000ms 262144K

Description:

A chessboard n × m in size is given. During the zero minute we repaint all the black squares to the 0 color. During the i-th minute we repaint to the i color the initially black squares that have exactly four corner-adjacent squares painted i - 1 (all such squares are repainted simultaneously). This process continues ad infinitum. You have to figure out how many squares we repainted exactly x times.

The upper left square of the board has to be assumed to be always black. Two squares are called corner-adjacent, if they have exactly one common point.

Input:

The first line contains integers n and m (1 ≤ n, m ≤ 5000). The second line contains integer x (1 ≤ x ≤ 109).

Output:

Print how many squares will be painted exactly x times.

Sample Input:

3 3
1

Sample Output:

4

Sample Input:

3 3
2

Sample Output:

1

Sample Input:

1 1
1

Sample Output:

1

Informação

Codeforces

Provedor Codeforces

Código CF40B

Tags

math

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:28:15

Relacionados

Nada ainda