Same Integers

AtCoder
IDarc094_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
2 5 4
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.
Input #2
2 6 3
Output #2
5
Input #3
31 41 5
Output #3
23
API Response (JSON)
{
  "problem": {
    "name": "Same Integers",
    "description": {
      "content": "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 o",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc094_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "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 o...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments