일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 데이터베이스
- programmers
- MyPlaylist
- 그리디알고리즘
- 종합설계
- DP
- B대면노래방
- 최소스패닝트리
- 모각코
- 실습
- 프로그래머스
- 장고
- 마라마라빔
- codetree
- 알고리즘
- 백트래킹
- BFS
- 동적계획법
- SQL
- 파이썬
- 백준
- 코드트리
- Kruskal
- DFS
- django
- 함밥
- 소프트웨어공학
- Bellman-Ford
- Planned
- minimum spanning tree
Archives
- Today
- Total
Leta Learns
[모각코] 220730 Today I Learned 본문
<백준 1676번 - 팩토리얼 0의 개수>
팩토리얼 함수 만들고 뒤에서 부터 for문 돌려주면 되는 거라 그리 어렵지 않았다.
다음 주 부터는 조금 더 어려운 문제를 시도해볼까 싶은데...
더워서 아무것도 하기 싫다 ㅎㅎ 😥
import sys
input = sys.stdin.readline
def factorial(n):
fac = 1
for i in range(1, n+1):
fac *= i
return fac
n = int(input())
ans = factorial(n)
strans = str(ans)
cnt = 0
for i in range(len(strans)-1, -1, -1):
if strans[i] == '0':
cnt += 1
else:
break
print(cnt)
#2022-08-06
math모듈 factorial 함수 사용한 코드
import sys, math
input = sys.stdin.readline
n = int(input())
ans = math.factorial(n)
strans = str(ans)
cnt = 0
for i in range(len(strans)-1, -1, -1):
if strans[i] == '0':
cnt += 1
else:
break
print(cnt)
'HUFS > HUFS 모각코 캠프' 카테고리의 다른 글
[모각코] 220806 Today I Learned (0) | 2022.08.06 |
---|---|
[모각코] 220803 Today I Learned (0) | 2022.08.04 |
[모각코] 220727 Today I Learned (0) | 2022.07.27 |
[모각코] 220723 Today I Learned (0) | 2022.07.23 |
[모각코] 220720 Today I Learned (0) | 2022.07.20 |
Comments