CF1204A.BowWow and the Timetable
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In the city of Saint Petersburg, a day lasts for 2100 minutes. From the main station of Saint Petersburg, a train departs after 1 minute, 4 minutes, 16 minutes, and so on; in other words, the train departs at time 4k for each integer k≥0 . Team BowWow has arrived at the station at the time s 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 s . For example if s=20 , then they missed trains which have departed at 1 , 4 and 16 . As you are the only one who knows the time, help them!
Note that the number s will be given you in a binary representation without leading zeroes.
输入格式
The first line contains a single binary number s ( 0≤s<2100 ) without leading zeroes.
输出格式
Output a single number — the number of trains which have departed strictly before the time s .
输入输出样例
输入#1
100000000
输出#1
4
输入#2
101
输出#2
2
输入#3
10100
输出#3
3
说明/提示
In the first example 1000000002=25610 , missed trains have departed at 1 , 4 , 16 and 64 .
In the second example 1012=510 , trains have departed at 1 and 4 .
The third example is explained in the statements.