백준 알고리즘/수학21 백준 13241번 파이썬 from fractions import gcddef gcdlcm(a, b): return a*b/gcd(a,b)a,b = map(int, input().split())print(int(gcdlcm(a,b))) 2018. 10. 3. 백준 1934번 파이썬 from fractions import gcddef gcdlcm(a, b): return a*b/gcd(a,b)for i in range(int(input())): a,b = map(int, input().split()) print(int(gcdlcm(a,b))) 2018. 10. 3. 백준 6591번 파이썬 a,b =map(int,input().split())while 1>0: if a==0 and b==0: break if b > a-b : b = a-b sum =1 for i in range(1,b+1): sum = sum*a/i a-=1 print(int(sum)) a,b =map(int,input().split()) 2018. 9. 28. 백준 2407번 파이썬 from math import factoriala,b=map(int,input().split())print((factorial(a)//(factorial(b)*factorial(a-b)))) 2018. 9. 28. 이전 1 2 3 4 5 6 다음