1 条题解

  • 0
    @ 2025-9-10 8:58:59

    C++ :

    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    char s[100005];
    int p;
    const long long mod=(long long)(1000000007);
    int change(char c)
    {
        if(c>='0'&&c<='9')
            return c-'0';
        return c-'A'+10;
    }
    
    int main()
    {
        int t;
        cin>>t;
        while(t--)
        {
            cin>>s>>p;
            int len=strlen(s);
            long long tmp=0;
            long long res=0;
            for(int i=len-1;i>=0;i--)
            {
                res+=change(s[i])*tmp;
                res%=mod;
                tmp=tmp*p+1;
                tmp%=mod;
            }
            cout<<res<<endl;
        }
    }
    
    
    • 1

    信息

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