又见GCD(GCD)【HDU】-2504

xiaoxiao2021-02-28  107

点击打开链接

又见GCD

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 19990    Accepted Submission(s): 8355 Problem Description 有三个正整数a,b,c(0<a,b,c<10^6),其中c不等于b。若a和c的最大公约数为b,现已知a和b,求满足条件的最小的c。   Input 第一行输入一个n,表示有n组测试数据,接下来的n行,每行输入两个正整数a,b。   Output 输出对应的c,每组测试数据占一行。   Sample Input 2 6 2 12 4   Sample Output 4 8   Source 《ACM程序设计》短学期考试_软件工程及其他专业   代码:

#include <stdio.h> int gcd(int m,int n) { if(n==0) return m; return gcd(n,m%n); } int main() { int a,i,b,t; scanf("%d",&t); while(t--) { int c; scanf("%d %d",&a,&b); c=2*b; while(gcd(a,c)!=b) { c=c+b; } printf("%d\n",c); } return 0; }

转载请注明原文地址: https://www.6miu.com/read-36490.html

最新回复(0)