atcoder#AGC014A. [AGC014A] Cookie Exchanges
[AGC014A] Cookie Exchanges
Score : points
Problem Statement
Takahashi, Aoki and Snuke love cookies. They have , and cookies, respectively. Now, they will exchange those cookies by repeating the action below:
- Each person simultaneously divides his cookies in half and gives one half to each of the other two persons.
This action will be repeated until there is a person with odd number of cookies in hand.
How many times will they repeat this action? Note that the answer may not be finite.
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print the number of times the action will be performed by the three people, if this number is finite.
If it is infinite, print -1
instead.
4 12 20
3
Initially, Takahashi, Aoki and Snuke have , and cookies. Then,
- After the first action, they have , and .
- After the second action, they have , and .
- After the third action, they have , and .
Now, Takahashi and Snuke have odd number of cookies, and therefore the answer is .
14 14 14
-1
454 414 444
1