3254.Repaintings

Time Limit: 1s Memory Limit: 256MB

A chessboard n \times 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 Format(From the terminal/stdin)

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

Output Format(To the terminal/stdout)

Print how many squares will be painted exactly x times.

Sample Input 1

Copy
3 3
1
 · \n
 \n

Sample Output 1

Copy
4
 \n

Sample Input 2

Copy
3 3
2
 · \n
 \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
1 1
1
 · \n
 \n

Sample Output 3

Copy
1
 \n

Submit

请先 登录

© 2025 FAQs