Lowest Common Multiple Plus(hdu2028)

Posted Strugglinggirl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lowest Common Multiple Plus(hdu2028)相关的知识,希望对你有一定的参考价值。

思考: 乘法爆咋数据。把int换成unsigned就过了,同时%d换成%u。求最大公约数和最小公倍数。

#include<stdio.h>
int gcd(unsigned x, unsigned y)
{
    unsigned r;
    while ((r = x%y) != 0)
    {
        x = y;
        y = r;
    }
    return y;
}
int lcm(unsigned x, unsigned y)
{
    unsigned d;
    d = gcd(x, y);
    return (x*y / d);
}
int main()
{
    int  n;
    char d;
    while (scanf_s("%d%c",&n,&d)!=EOF)
    {
        unsigned d1 = 1;
        for (int k = 1; k <= n; k++)
        {
            unsigned  a;
            scanf_s("%u", &a);
            d1 = lcm(d1, a);
        }
        printf("%u\\n", d1);
    }
}

 

以上是关于Lowest Common Multiple Plus(hdu2028)的主要内容,如果未能解决你的问题,请参考以下文章

HDU2028 Lowest Common Multiple PlusGCD+LCM

HDoj 2028 Lowest Common Multiple Plus

HDU 2028 Lowest Common Multiple Plus

HDU 2028 Lowest Common Multiple Plus

杭电 2028 ( Lowest Common Multiple Plus )

LeetCode 236. Lowest Common Ancestor of a Binary Tree; 235. Lowest Common Ancestor of a Binary Searc