일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 다이나믹 프로그래밍
- 그리디
- SQL
- 백준 16918번
- 백준 1987
- 자바
- 명품자바
- HUFS 모각코 캠프
- 깃헙
- 백준 1331번
- 백준
- Python
- java_programming
- 백준 15787번
- 모각코
- AWS
- 백준 17451번
- MySQL
- react
- javascript
- 그래프
- ubuntu
- 백준 18310번
- SWEA 15612번
- 백준 3085번
- 머신러닝과 딥러닝
- 다이나믹프로그래밍
- 백준 1253번
- 백준 2512번
Archives
- Today
- Total
차곡차곡
[BOJ/Python, Java] 백준 2004번 - 조합 0의 개수 본문
백준 #2004 조합 0의 개수
Python ver.
def calc(n, x):
cnt = 0
while x <= n:
n = n // x
cnt += n
return cnt
n, m = map(int, input().split())
print(min(calc(n, 2) - calc(n-m, 2) - calc(m, 2), calc(n, 5) - calc(n-m, 5) - calc(m, 5)))
Java ver.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static public int calc(int n, int x) {
int cnt = 0;
while (x <= n) {
n = n /x;
cnt += n;
}
return cnt;
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
int res = Math.min(calc(n, 2) - calc(n-m, 2) - calc(m,2), calc(n, 5) - calc(n-m, 5) - calc(m, 5));
System.out.println(res);
}
}
'CS > Algorithm' 카테고리의 다른 글
[SWEA/Java] SW Expert Academy 1247번 - 최적 경로 (0) | 2023.08.18 |
---|---|
[BOJ/Java] 백준 1074번 - Z (0) | 2023.08.16 |
[BOJ/Java] 백준 17406번 - 배열 돌리기 4 (0) | 2023.08.11 |
[BOJ/Java] 백준 11286번 - 절댓값 힙 (0) | 2023.08.10 |
[BOJ/Java] 백준 5014번 - 스타트링크 (0) | 2023.08.10 |
Comments