欢乐赛#36 T6题解
2024-12-24 20:34:38
发布于:北京
5阅读
0回复
0点赞
这就是压轴题?
轻松,直接import math
,用它的gcd
轻松过
代码如下:
import math
T = int(input())
for _ in range(T):
x, y, a, b = map(int, input().split())
result = math.gcd(math.gcd(x, y), math.gcd(a, b))
pri
这里空空如也
有帮助,赞一个