SunFly의 코딩 및 정보 블로그

[파이썬(Python)] 백준 1676번 : 팩토리얼 0의 개수 본문

백준(BaekJoon)

[파이썬(Python)] 백준 1676번 : 팩토리얼 0의 개수

SunFly 2022. 2. 26. 00:02

문제

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

입력

첫째 줄에 N이 주어진다. (0 ≤ N ≤ 500)

출력

첫째 줄에 구한 0의 개수를 출력한다.

풀이

import sys

def factorial(x):  # 팩토리얼
    res = 1
    for i in range(1, x+1):
        res *= i
    return res

input = sys.stdin.readline

N = int(input())
N_f = factorial(N)

N_f = list(str(N_f))
N_f = reversed(N_f) # 리스트 거꾸로

cnt = 0

for i in N_f:
    if i == '0':  # 만약 0이랑 같다면 cnt가 +1
        cnt += 1
    else:
        break

print(cnt)