1 条题解

  • 0
    @ 2023-6-11 12:16:30

    C :

    #include<stdio.h>
    #include<stdlib.h>
    #include<string.h>
    #include<ctype.h>
    char s[100];
    int main(){
        scanf("%s",&s);
        int len = strlen(s),i,j;
        long long a = 0,t = 0;
        for(i=0;i<len;i++){
            t = s[i] - '0'; 
            for(j=1;j<=len-i-1;j++){
                t = t * 8;
            }
            a = a + t;
        }
        printf("%lld",a);
        return 0;
    }
    
    

    Python :

    a=input()
    print(int(a,8))
    
    • 1

    信息

    ID
    2192
    时间
    1000ms
    内存
    16MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者