Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 알고리즘
- Spring
- 기초100제
- 타입스크립트
- C++
- Operating System
- Java
- web
- react
- js to ts
- 토이프로젝트
- 백준
- 파이썬
- error
- 공부
- 일상
- 프로그래머스
- OS
- Redux
- memory
- 정렬
- 자료구조
- CPU 스케줄링
- 리덕스장바구니
- 코드업
- 분할메모리할당
- react-redux
- codeup
- 협업
- 스프링
Archives
- Today
- Total
목록2004 (1)
감자튀김 공장🍟
[백준/2004] 조합 0의 개수 (with 파이썬)
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline def t_count(x): ans = 0 while x != 0: x //= 2 ans += x return ans def f_count(x): ans = 0 while x != 0: x //= 5 ans += x return ans n, m = map(int, input().split()) print(min(t_count(n) - t_count(n - m) - t_count(m), f_count(n) - f_count(n-m) - f_count(m))) ✔ 설명 입력 값이 최대 2억까지 들어올 수 있기 때문에 팩토리얼로 문제를 풀게되면 시간초과가 날 수 있다. 끝자리가 0이 나올려면 2x5 쌍이 필요하기 때문에 2,..
Algorithm/BOJ
2022. 12. 25. 14:55