atcoder#ARC074A. [ABC062C] Chocolate Bar
[ABC062C] Chocolate Bar
Score : points
Problem Statement
There is a bar of chocolate with a height of blocks and a width of blocks. Snuke is dividing this bar into exactly three pieces. He can only cut the bar along borders of blocks, and the shape of each piece must be a rectangle.
Snuke is trying to divide the bar as evenly as possible. More specifically, he is trying to minimize - , where is the area (the number of blocks contained) of the largest piece, and is the area of the smallest piece. Find the minimum possible value of .
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print the minimum possible value of .
3 5
0
In the division below, .
4 5
2
In the division below, .
5 5
4
In the division below, .
100000 2
1
100000 100000
50000