지나가던 개발자

[Python] 백준 9417번(최대 GCD) 문제 풀이 본문

PS/Python

[Python] 백준 9417번(최대 GCD) 문제 풀이

KwonYongHyeon 2022. 11. 23. 13:06

 

from itertools import combinations
import math

for i in range(int(input())):
    m = list(map(int, input().split()))
    biggest = 0
    for j in combinations(m, 2):
        if math.gcd(j[0], j[1]) > biggest:
            biggest = math.gcd(j[0], j[1])
    print(biggest)
Comments