N!에서 뒤에서부터 처음 0이 아닌 숫자가 나올 때까지 0의 개수를 구하는 프로그램을 작성하시오.
첫째 줄에 N이 주어진다. (0 ≤ N ≤ 500)
입력 | 출력 |
---|---|
10 | 2 |
3 | 0 |
팩토리얼의 크기가 커서 integer, long으로는 그 수를 담을 수 없음
곱해지는 수 중에 2와 5의 개수를 세서 가장 작은 최소값만큼 10을 약수로 가질 것임
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class five1676 {
int twoCount = 0;
int fiveCount = 0;
public void solution() throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(reader.readLine());
for (int i = 2; i <= n ; i++) {
search(i);
}
System.out.println(Math.min(twoCount, fiveCount));
}
public void search(int num) {
while (num > 1) {
if (num % 2 == 0) {
twoCount++;
num /= 2;
}
else if (num % 5 == 0) {
fiveCount++;
num /= 5;
}
else break;
}
}
public static void main(String[] args) throws IOException {
new five1676().solution();
}
}