codeforce 9C 找规律的思维题

本文介绍了一个算法,用于解决给定范围内能被Hexadecimal内存系统成功存储的十进制整数数量的问题。通过将输入的整数转换为字符串,并逐位检查其二进制表示是否仅包含0和1来实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

http://vjudge.net/contest/view.action?cid=47681#problem/C

Description

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 n different natural numbers from 1 to n 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

Input data contains the only number n (1 ≤ n ≤ 109).

Output

Output the only number — answer to the problem.

Sample Input

Input
10
Output
2

Hint

For n = 10 the answer includes numbers 1 and 10.

用a[ i],数组来表示长度为i的10 ^i,说含有的可取的数。把输入的数字当做字符串来处理,如果一个位上的数大于1,就加上a[1~i],若为1,则就加上a[i],0则不加。

注意其实数据范围是1~10^10,,,题干描述不准确,我被骗wa了一次==

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
using namespace std;
char a[10];
int sum[11]={0,1,2,4,8,16,32,64,128,256,512};
int main()
{
    while(~scanf("%s",a+1))
    {
        int n=strlen(a+1);
        int sum1=0;
        for(int i=1;i<=n;i++)
        {
            if(a[i]>'1')
            {
                for(int j=1;j<=n-i+1;j++)
                    sum1+=sum[j];
                break;
            }
            if(a[i]=='1')
                sum1+=sum[n-i+1];
        }
        printf("%d\n",sum1);
    }
    return 0;
}


### Codeforces 目难度分布及评级标准 Codeforces 的目难度范围广泛,涵盖了从新手到专家级别的各种挑战[^1]。该平台通过细致的分层机制来区分不同难度等级的问,使得每位参赛者都能到适合自己水平的任务。 #### 评分体系概述 Codeforces 使用基于积分制的评价系统,其中每道都有一个对应的分数(rating),用于表示其相对难易程度。较低的 rating 表明这是一道较为简单的目;而较高的 rating 则意味着更高的复杂性和解决难度。通常情况下: - **简单**:Rating 小于等于 1200 分 - **中等偏难**:Rating 范围大约在 1600 至 2000 分之间 - **困难**:Rating 大于等于 2400 分 这些数值并不是固定的界限,而是根据社区反馈以及比赛实际情况调整的结果。 #### Divisions 和 Contest Types 为了更好地适应不同程度的学习者和技术爱好者的需求,Codeforces 提供了多种类型的竞赛活动,比如 Division 1, Division 2, Division 3 及 Division 4 等不同类型的比赛[^2]。每个 division 对应着不同的最低准入门槛——即参与者应该具备的基础能力或经验水平。例如,在更高级别的比赛中会遇到更多高难度的问。 #### 技术领域覆盖 平台上发布的目不仅限于单一的技术方向,还涉及到多个计算机科学的重要分支,如贪心算法、动态规划、图论等领域。这种多样性有助于全面锻炼编程技巧并促进跨学科思维的发展。 ```python # 示例 Python 代码片段展示如何获取某场比赛的信息 import requests def get_contest_info(contest_id): url = f"https://codeforces.com/api/contest.standings?contestId={contest_id}&from=1&count=1" response = requests.get(url).json() if &#39;result&#39; not in response or &#39;problems&#39; not in response[&#39;result&#39;]: return None problems = response[&#39;result&#39;][&#39;problems&#39;] for problem in problems: print(f"{problem[&#39;index&#39;]}: {problem[&#39;name&#39;]} - Rating: {problem.get(&#39;rating&#39;, &#39;N/A&#39;)}") get_contest_info(1669) ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值