C - Same Integers 解説 /

実行時間制限: 2 sec / メモリ制限: 256 MB

配点 : 300

問題文

3 つの整数 A,B,C が与えられます。以下の 2 種類の操作を好きな順で繰り返して A,B,C をすべて等しくするために必要な操作の最小回数を求めてください。

  • A,B,C のうち 2 つを選んで、その両方を 1 増やす
  • A,B,C のうち 1 つを選んで、その整数を 2 増やす

なお、これらの操作を繰り返して A,B,C をすべて等しくできることは証明できます。

制約

  • 0 \leq A,B,C \leq 50
  • 入力はすべて整数である

入力

入力は以下の形式で標準入力から与えられる。

A B C

出力

A,B,C をすべて等しくするために必要な操作の最小回数を出力せよ。


入力例 1

2 5 4

出力例 1

2

以下の操作で、A,B,C をすべて等しくできます。

  • A,C1 増やす。A,B,C はそれぞれ 3,5,5 となる。
  • A2 増やす。A,B,C はそれぞれ 5,5,5 となる。

入力例 2

2 6 3

出力例 2

5

入力例 3

31 41 5

出力例 3

23

Score : 300 points

Problem Statement

You are given three integers A, B and C. Find the minimum number of operations required to make A, B and C all equal by repeatedly performing the following two kinds of operations in any order:

  • Choose two among A, B and C, then increase both by 1.
  • Choose one among A, B and C, then increase it by 2.

It can be proved that we can always make A, B and C all equal by repeatedly performing these operations.

Constraints

  • 0 \leq A,B,C \leq 50
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

A B C

Output

Print the minimum number of operations required to make A, B and C all equal.


Sample Input 1

2 5 4

Sample Output 1

2

We can make A, B and C all equal by the following operations:

  • Increase A and C by 1. Now, A, B, C are 3, 5, 5, respectively.
  • Increase A by 2. Now, A, B, C are 5, 5, 5, respectively.

Sample Input 2

2 6 3

Sample Output 2

5

Sample Input 3

31 41 5

Sample Output 3

23