UVA 11388 GCD LCM 解题

The GCD of two positive integers is the largest integer that divides both the integers without any remainder. The LCM of two positive integers is the smallest positive integer that is divisible by both the integers. A positive integer can be the GCD of many pairs of numbers. Similarly, it can be the LCM of many pairs of numbers. In this problem, you will be given two positive integers. You have to output a pair of numbers whose GCD is the first number and LCM is the second number.


Input
The first line of input will consist of a positive integer T. T denotes the number of cases. Each of the next T lines will contain two positive integer, G and L.


Output
For each case of input, there will be one line of output. It will contain two positive integers a and b, a ≤ b, which has a GCD of G and LCM of L. In case there is more than one pair satisfying the condition, output the pair for which a is minimized. In case there is no such pair, output ‘-1’.
Constraints • T ≤ 100 • Both G and L will be less than 231.


Sample Input
2 1 2 3 4


Sample Output
1 2 -1


 1 #include<stdio.h>
 2 int main()
 3 {
 4     int t,f,G,L;
 5     long long i,j;
 6     scanf("%d",&t);
 7     while(t--)
 8     {
 9         scanf("%d%d",&G,&L);
10         f=0;
11         for(i=G;i<=L;i+=G)
12         {
13             for(j=G;j<=L;j+=G)
14             {
15                 if(lcm(i,j)==L&&gcd(i,j)==G) //一个一个的试
16                 {
17                     printf("%lld %lld\n",i,j);
18                     f=1;
19                     break;
20                 }
21             }
22             if(f)    break;
23         }
24         if(!f)    printf("-1\n");
25     }
26     return 0;
27 }
28 int gcd(long long a,long long b)
29 {
30     long long t;
31     if(a<b)  //把大的放在前面,再进行递归
32     {
33         t=a;
34         a=b;
35         b=t;
36     }
37     return (a%b==0)?b:gcd(b,a%b);
38 }
39 int lcm(long long a,long long b)
40 {
41     long long t;
42     if(a<b)
43     {
44         t=a;
45         a=b;
46         b=t;
47     }
48     return ((a*b)/gcd(a,b));
49 } 

 


 

posted @ 2017-03-27 17:11  丿月华丶唯少  阅读(208)  评论(0编辑  收藏  举报