A859.Hexadecimal's Numbers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of nn different natural numbers from 1 to nn to obtain total control over her energy.

But his plan failed. The reason for this was very simple: Hexadecimal didn't perceive any information, apart from numbers written in binary format. This means that if a number in a decimal representation contained characters apart from 0 and 1, it was not stored in the memory. Now Megabyte wants to know, how many numbers were loaded successfully.

输入格式

Input data contains the only number nn ( 1<=n<=1091<=n<=10^{9} ).

输出格式

Output the only number — answer to the problem.

输入输出样例

  • 输入#1

    10
    

    输出#1

    2

说明/提示

For nn = 10 the answer includes numbers 1 and 10.
CF9C

首页