1 条题解

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

    C :

    #include<stdio.h>
    #include<stdlib.h>
    #include<string.h>
    #include<ctype.h>
    #include<math.h>
    
    int main(){
    	char s[10001];
    	scanf("%s",&s);
    	int len=strlen(s);
    	int i,j;
    	long long a,sum=0;
    	for(i=0;i<len;i++){
    		if(isdigit(s[i])){
    			a=s[i]- '0';
    		}else{
    			a=s[i]-'A'+10;
    		}
    		for(j=1;j<=len-i-1;j++){
    			a=a*16;
    			
    		}
    		sum=sum+a;
    	}
    	printf("%lld",sum);
        return 0;
    }
    
    

    Python :

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

    信息

    ID
    2202
    时间
    1000ms
    内存
    16MiB
    难度
    8
    标签
    递交数
    108
    已通过
    19
    上传者