

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋君は、レジ打ちの仕事をしています。
レジの機械には 00
, 0
, 1
, 2
, 3
, 4
, 5
, 6
, 7
, 8
, 9
の 個のボタンがあります。
レジの機械には、はじめ が表示されています。
ボタン 00
を押すと、表示されている数が 倍されます。
それ以外のボタンを押すと、表示されている数が 倍されたあとに、押されたボタンに書かれている数が加算されます。
高橋君は、レジに整数 を表示させたいです。 レジに が表示されている状態にするためには、少なくとも何回ボタンを押す必要があるか求めてください。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを 行で出力せよ。
入力例 1Copy
40004
出力例 1Copy
4
例えば、次のように操作することでボタンを 回押して を表示させることができます。 はじめ、レジには が表示されています。
- ボタン
4
を押す。レジに表示されている数は となる。 - ボタン
00
を押す。レジに表示されている数は となる。 - ボタン
0
を押す。レジに表示されている数は となる。 - ボタン
4
を押す。レジに表示されている数は となる。
回までボタンを押すことでレジに を表示させることはできないので、出力すべき値は です。
入力例 2Copy
1355506027
出力例 2Copy
10
入力例 3Copy
10888869450418352160768000001
出力例 3Copy
27
は 整数に収まらない場合があることに注意してください。
Score : points
Problem Statement
Takahashi is a cashier.
There is a cash register with keys: 00
, 0
, 1
, 2
, 3
, 4
, 5
, 6
, 7
, 8
, and 9
.
The cash register initially displays .
Whenever he types the key 00
, the displayed number is multiplied by ;
whenever he types one of the others, the displayed number is multiplied by , and then added by the number written on the key.
Takahashi wants the cash register to display an integer . At least how many keystrokes are required to make it display ?
Constraints
- is an integer.
Input
The input is given from Standard Input in the following format:
Output
Print the answer in a line.
Sample Input 1Copy
40004
Sample Output 1Copy
4
For example, the following four keystrokes make the cash register display . Initially, the cash register displays .
- Type the key
4
. It now displays . - Type the key
00
. It now displays . - Type the key
0
. It now displays . - Type the key
4
. It now displays .
He cannot make it display with three or fewer keystrokes, so should be printed.
Sample Input 2Copy
1355506027
Sample Output 2Copy
10
Sample Input 3Copy
10888869450418352160768000001
Sample Output 3Copy
27
Note that may not fit into a - integer type.