OpenJudge 2973(skew)

简介: 时间限制:1000ms内存限制:65536kB描述在 skew binary表示中, 第 k 位的值xk表示xk*(2k+1-1)。 每个位上的可能数字是0 或 1,最后面一个非零位可以是2, 例如, 10120(skew) = 1*(25-1) + 0*(24-1) + 1*(23-1) + 2*(22-1) + 0*(21-1) = 31 + 0 + 7 + 6 + 0 = 44. 前十个skew数是 0、1、2、10、11、12、20、100、101、以及102。
时间限制:
1000ms
内存限制:
65536kB
描述
在 skew binary表示中, 第 k 位的值x k表示x k*(2 k+1-1)。 每个位上的可能数字是0 或 1,最后面一个非零位可以是2, 例如, 10120(skew) = 1*(2 5-1) + 0*(2 4-1) + 1*(2 3-1) + 2*(2 2-1) + 0*(2 1-1) = 31 + 0 + 7 + 6 + 0 = 44. 前十个skew数是 0、1、2、10、11、12、20、100、101、以及102。
输入
输入包含一行或多行,每行包含一个整数n。 如果 n = 0 表示输入结束,否则n是一个skew 数
输出
对于每一个输入,输出它的十进制表示。转换成十进制后, n 不超过 2 31-1 = 2147483647
样例输入
10120
200000000000000000000000000000
10
1000000000000000000000000000000
11
100
11111000001110000101101102000
0
样例输出
44
2147483646
3
2147483647
4
7
1041110737
#include<stdio.h>
#include<string.h>
char str[35];
int My_Pow(int m,int n)
{
    int i;
    int ans=1;
    for(i=1;i<=n;i++)
        ans*=m;
    return ans;
}
int main()
{
    int i,j;
    int len,sum;
    while(1)
    {
        sum=0;
        memset(str,0,sizeof(str));
        gets(str);
        len=strlen(str);
        if(strcmp(str,"0")==0)
            break;
        for(i=len;i>=1;i--)
            sum+=(My_Pow(2,i)-1)*(str[len-i]-'0');
        printf("%d\n",sum);
    }
    return 0;
}

 

目录
相关文章
|
6月前
|
存储 前端开发 算法
《500 Lines or Less》(3)Clustering by Consensus
《500 Lines or Less》(3)Clustering by Consensus
报错FloatingPointError: Loss became infinite or NaN at iteration=88!
报错FloatingPointError: Loss became infinite or NaN at iteration=88!
215 0
Leetcode-Hard 84. Largest Rectangle in Histogram
Leetcode-Hard 84. Largest Rectangle in Histogram
105 0
Leetcode-Hard 84. Largest Rectangle in Histogram
【1096】Consecutive Factors (20 分)
【1096】Consecutive Factors (20 分) 【1096】Consecutive Factors (20 分)
129 0
|
算法 C#
算法题丨3Sum Closest
描述 Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target.
1298 0
|
算法 C#
算法题丨Longest Consecutive Sequence
描述 Given an unsorted array of integers, find the length of the longest consecutive elements sequence.
1121 0
|
Windows
1029. Median (25)
#include #include #include #include using namespace std; int main(){ long long n, t; cin >> n; ...
899 0
1046. Shortest Distance (20)
The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of exits.
967 0