보안을 그리다, 훈이

[Baekjoon/Python3] 1676번 팩토리얼 0의 개수 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 1676번 팩토리얼 0의 개수

HooNeee 2020. 12. 3. 01:01

[Baekjoon/Python3] 1676번 팩토리얼 0의 개수

 

www.acmicpc.net/problem/1676

 

1676번: 팩토리얼 0의 개수

N!에서 뒤에서부터 처음 0이 아닌 숫자가 나올 때까지 0의 개수를 구하는 프로그램을 작성하시오.

www.acmicpc.net

 

# factorial 함수 미사용시
n = int(input())
fac = 1
rfac = ''
cnt = 0
for i in range(1, n + 1):
    fac *= i
for i in str(fac):
    rfac = i + rfac
for i in rfac:
    if i == '0':
        cnt += 1
    else:
        break
print(cnt)
Comments