반응형
📖 문제
📋 코드
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int cnt2 = 0;
int cnt5 = 0;
for (int i = 1; i <= N; i++) {
int tmp = i;
while (tmp % 2 == 0) {
tmp /= 2;
cnt2++;
}
while (tmp % 5 == 0) {
tmp /= 5;
cnt5++;
}
}
System.out.println(Math.min(cnt2, cnt5));
}
}
👨🏻💻 결과
📕 풀이 방법
10이 만들어지기 위해서는 2와 5가 필요하므로 N! 의 2와 5의 개수를 구하면 0의 개수를 구할 수 있습니다.
🔗 링크
https://www.acmicpc.net/problem/1676
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 10773번 - 제로 (0) | 2021.11.23 |
---|---|
[JAVA] 백준 10828번 - 스택 (0) | 2021.11.23 |
[JAVA] 백준 9375번 - 패션왕 신해빈 (0) | 2021.11.19 |
[JAVA] 백준 1010번 - 다리 놓기 (0) | 2021.11.18 |
[JAVA] 백준 11051번 - 이항 계수 2 (0) | 2021.11.18 |