【Loj 1282 】 Leading and Trailing 【a^b 的前3位and后三位】

本文介绍了一种高效计算n的k次幂的最前面三位和最后三位的方法。利用对数特性,通过分离整数部分和小数部分来确定n^k的首位三数字,并通过模运算获取末尾三位数。

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

You are given two integers: n and k, your task is to find the most significant three digits, and least significant three digits of nk.

Input

Input starts with an integer T (≤ 1000), denoting the number of test cases.

Each case starts with a line containing two integers: n (2 ≤ n < 231) and k (1 ≤ k ≤ 107).

Output

For each case, print the case number and the three leading digits (most significant) and three trailing digits (least significant). You can assume that the input is given such that nk contains at least six digits.

Sample Input

5
123456 1
123456 2
2 31
2 32
29 8751919

Sample Output

Case 1: 123 456
Case 2: 152 936
Case 3: 214 648
Case 4: 429 296
Case 5: 665 669

令x=lg(n^k)的整数部分,y=lg(n^k)的小数部分,则n^k由y决定——因为10^x是1000…0。所以10^y再乘上100取整就是前三位。
代码

#include<bits/stdc++.h>
#define LL long long
using namespace std;
const int MAXN = 50000+10;
const int MAXM = 1e5;
LL qp(LL a,int n,LL mod){
    LL ans=1;
    while(n){
        if(n&1) ans=ans*a%mod;
        a=a*a%mod;
        n>>=1;
    }
    return ans;
}
int main()
{
    LL n;int t,k;
    scanf("%d",&t);int ncase=1;
     while(t--){
        scanf("%lld%d",&n,&k);
        double temp=(double)k*log10(n);
        temp-=floor(temp);
        temp=pow(10.0,temp);
        temp=100*temp;
        LL b=qp(n,k,1000);
        printf("Case %d: %lld %03lld\n",ncase++,(LL)temp,b); //注意后三位可能都是0 ,所以要加上前导零
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值