CF1204A.BowWow and the Timetable

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In the city of Saint Petersburg, a day lasts for 21002^{100} minutes. From the main station of Saint Petersburg, a train departs after 11 minute, 44 minutes, 1616 minutes, and so on; in other words, the train departs at time 4k4^k for each integer k0k \geq 0 . Team BowWow has arrived at the station at the time ss and it is trying to count how many trains have they missed; in other words, the number of trains that have departed strictly before time ss . For example if s=20s = 20 , then they missed trains which have departed at 11 , 44 and 1616 . As you are the only one who knows the time, help them!

Note that the number ss will be given you in a binary representation without leading zeroes.

输入格式

The first line contains a single binary number ss ( 0s<21000 \leq s < 2^{100} ) without leading zeroes.

输出格式

Output a single number — the number of trains which have departed strictly before the time ss .

输入输出样例

  • 输入#1

    100000000
    

    输出#1

    4
    
  • 输入#2

    101
    

    输出#2

    2
    
  • 输入#3

    10100
    

    输出#3

    3
    

说明/提示

In the first example 1000000002=25610100000000_2 = 256_{10} , missed trains have departed at 11 , 44 , 1616 and 6464 .

In the second example 1012=510101_2 = 5_{10} , trains have departed at 11 and 44 .

The third example is explained in the statements.

首页