306481: CF1204A. BowWow and the Timetable
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
BowWow and the Timetable
题意翻译
## 题目描述 已知圣彼得堡的车站会在第 $4^k(k\geq 0)$ 分钟开出新的一趟火车,已知BowWow团队将在第 $s(0\leq s\leq 2^{100})$ 分钟时到达火车站,他们想知道自己错过了多少趟火车;换句话说,在第 $s$ 分钟之前开出了多少趟火车。举个例子,当 $s=20$ 时,他们错过了第 1、4 和 16 分钟的火车。现在只有你知道这个时间 $s$,请你求出他们错过了多少趟火车。 ## 输入格式 输入共一行。 第一行输入一串由 0 和 1 组成的数字串(长度$\leq 100$),为 $s$ 的二进制形式。 ## 输出格式 输出一个数,为第 $s$ 分钟前开出的火车数量。题目描述
In the city of Saint Petersburg, a day lasts for $ 2^{100} $ 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 $ 4^k $ for each integer $ k \geq 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](https://en.wikipedia.org/wiki/Binary_number#Representation) without leading zeroes.输入输出格式
输入格式
The first line contains a single binary number $ s $ ( $ 0 \leq s < 2^{100} $ ) 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