분류 전체보기439 백준 2407번 파이썬 from math import factoriala,b=map(int,input().split())print((factorial(a)//(factorial(b)*factorial(a-b)))) 2018. 9. 28. 백준 1676번 파이썬 from math import factorialcount=0n=factorial(int(input()))while n%10 == 0: n = n//10 count+=1print(count) 2018. 9. 28. 백준 10872번 파이썬 from math import factorialprint(factorial(int(input()))) 2018. 9. 28. 백준 11051번 파이썬 from math import factoriala,b=map(int,input().split())print((factorial(a)//(factorial(b)*factorial(a-b)))%10007) 2018. 9. 28. 이전 1 ··· 95 96 97 98 99 100 101 ··· 110 다음