LightOj 1215 - Finding LCM(求LCM(x, y)=L中的 y x与y的最小公倍数为L 求最小的y )

 

L = LCM(x, y)=x*y/gcd(x, y);如果把x,y,L写成素因子之积的方式会很容易发现 L 就是 x 和 y 中素因子指数较大的那些数之积;

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<queue>
#include<map>
#include<math.h>
#include<string>
#include<vector>
using namespace std;
#define INF 0x3f3f3f3f
#define LL long long
#define N 1000006
LL gcd(LL a,LL b)
{
    return b==0?a:gcd(b,a%b);
}
int main()
{
    int T,t=1;
    scanf("%d",&T);
    while(T--)
    {
        LL a,b,l;
        scanf("%lld%lld%lld",&a,&b,&l);
        LL x=a/gcd(a,b)*b;
        printf("Case %d: ", t++);
        if(l%x)
        {
            printf("impossible\n");
            continue;
        }
        LL y=l/x,z;
        while(z=gcd(x,y),z!=1)
        {
            x=x/z;
            y=y*z;
        }
        printf("%lld\n",y);
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/a719525932/p/7724460.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值