

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋君はレベル の赤い宝石を 個持っています。(他に宝石は持っていません。)
高橋君は次の操作を好きなだけ行うことができます。
- レベル の赤い宝石 ( は 以上) を「レベル の赤い宝石 個と、レベル の青い宝石 個」に変換する。
- レベル の青い宝石 ( は 以上) を「レベル の赤い宝石 個と、レベル の青い宝石 個」に変換する。
高橋君はレベル の青い宝石ができるだけたくさんほしいです。操作によって高橋君はレベル の青い宝石を最大何個入手できますか?
制約
- 入力される値はすべて整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
2 3 4
出力例 1Copy
12
次のような変換を行うことで、高橋君はレベル の青い宝石を 個手に入れることができます。
- まず、レベル の赤い宝石 個を、レベル の赤い宝石 個とレベル の青い宝石 個に変換します。
- 操作後の高橋君は、レベル の赤い宝石 個とレベル の青い宝石 個を持っています。
- 次に、レベル の青い宝石 個を、レベル の赤い宝石 個とレベル の青い宝石 個に変換します。この変換を 回繰り返します。
- 操作後の高橋君は、レベル の赤い宝石 個とレベル の青い宝石 個を持っています。
- これ以上変換を行うことはできません。
個より多くレベル の青い宝石を手に入れることはできないので、答えは になります。
入力例 2Copy
1 5 5
出力例 2Copy
0
高橋君がレベル の青い宝石を 個も手に入れられない場合もあります。
入力例 3Copy
10 5 5
出力例 3Copy
3942349900
答えが bit 整数に収まらない場合があることに注意してください。
Score : points
Problem Statement
Takahashi has a red jewel of level . (He has no other jewels.)
Takahashi can do the following operations any number of times.
- Convert a red jewel of level ( is at least ) into "a red jewel of level and blue jewels of level ".
- Convert a blue jewel of level ( is at least ) into "a red jewel of level and blue jewels of level ".
Takahashi wants as many blue jewels of level as possible. At most, how many blue jewels of level can he obtain by the operations?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
2 3 4
Sample Output 1Copy
12
Takahashi can obtain blue jewels of level by the following conversions.
- First, he converts a red jewel of level into a red jewel of level and blue jewels of level .
- After this operation, Takahashi has red jewel of level and blue jewels of level .
- Next, he repeats the following conversion times: converting a blue jewel of level into a red jewel of level and blue jewels of level .
- After these operations, Takahashi has red jewels of level and blue jewels of level .
- He cannot perform a conversion anymore.
He cannot obtain more than blue jewels of level , so the answer is .
Sample Input 2Copy
1 5 5
Sample Output 2Copy
0
Takahashi may not be able to obtain a blue jewel of level .
Sample Input 3Copy
10 5 5
Sample Output 3Copy
3942349900
Note that the answer may not fit into a -bit integer type.