본문 바로가기
파이썬/백준

1676번 : 팩토리얼 0의 개수

by L_SU 2022. 7. 16.
# 팩토리얼 0의 개수

n = int(input())
np = 1
count = 0
for i in range(1, n+1):
    np *= i
np = list(str(np))
for i in range(len(np)-1, 0, -1):
    if np[i] == '0':
        count += 1
    else:
        break
print(count)

'파이썬 > 백준' 카테고리의 다른 글

6588번 : 골드바흐의 추측  (0) 2022.07.19
4948번 : 베르트랑 공준  (0) 2022.07.17
2309번 : 일곱 난쟁이  (0) 2022.07.15
11726번 : 2xn 타일링  (0) 2022.07.09
11727번 : 2Xn 타일링 2  (0) 2022.07.08