C - Cash Register Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300300

問題文

高橋君は、レジ打ちの仕事をしています。

レジの機械には 00, 0, 1, 2, 3, 4, 5, 6, 7, 8, 91111 個のボタンがあります。 レジの機械には、はじめ 00 が表示されています。 ボタン 00 を押すと、表示されている数が 100100 倍されます。 それ以外のボタンを押すと、表示されている数が 1010 倍されたあとに、押されたボタンに書かれている数が加算されます。

高橋君は、レジに整数 SS を表示させたいです。 レジに SS が表示されている状態にするためには、少なくとも何回ボタンを押す必要があるか求めてください。

制約

  • 1S101000001\leq S\leq 10^{100000}
  • SS は整数

入力

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

SS

出力

答えを 11 行で出力せよ。


入力例 1Copy

Copy
40004

出力例 1Copy

Copy
4

例えば、次のように操作することでボタンを 44 回押して 4000440004 を表示させることができます。 はじめ、レジには 00 が表示されています。

  • ボタン 4 を押す。レジに表示されている数は 44 となる。
  • ボタン 00 を押す。レジに表示されている数は 400400 となる。
  • ボタン 0 を押す。レジに表示されている数は 40004000 となる。
  • ボタン 4 を押す。レジに表示されている数は 4000440004 となる。

33 回までボタンを押すことでレジに 4000440004 を表示させることはできないので、出力すべき値は 44 です。


入力例 2Copy

Copy
1355506027

出力例 2Copy

Copy
10

入力例 3Copy

Copy
10888869450418352160768000001

出力例 3Copy

Copy
27

SS64bit64\operatorname{bit} 整数に収まらない場合があることに注意してください。

Score : 300300 points

Problem Statement

Takahashi is a cashier.

There is a cash register with 1111 keys: 00, 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. The cash register initially displays 00. Whenever he types the key 00, the displayed number is multiplied by 100100; whenever he types one of the others, the displayed number is multiplied by 1010, and then added by the number written on the key.

Takahashi wants the cash register to display an integer SS. At least how many keystrokes are required to make it display SS?

Constraints

  • 1S101000001\leq S\leq 10^{100000}
  • SS is an integer.

Input

The input is given from Standard Input in the following format:

SS

Output

Print the answer in a line.


Sample Input 1Copy

Copy
40004

Sample Output 1Copy

Copy
4

For example, the following four keystrokes make the cash register display 4000440004. Initially, the cash register displays 00.

  • Type the key 4. It now displays 44.
  • Type the key 00. It now displays 400400.
  • Type the key 0. It now displays 40004000.
  • Type the key 4. It now displays 4000440004.

He cannot make it display 4000440004 with three or fewer keystrokes, so 44 should be printed.


Sample Input 2Copy

Copy
1355506027

Sample Output 2Copy

Copy
10

Sample Input 3Copy

Copy
10888869450418352160768000001

Sample Output 3Copy

Copy
27

Note that SS may not fit into a 6464-bit\operatorname{bit} integer type.



2025-04-04 (Fri)
23:13:40 +00:00