#include <iostream>
#include <stdio.h>
#include <vector>
using namespace std;
#include <math.h>
#include <algorithm>
int main() {
// freopen
int n, i, j, tmp, cnt1=0, cnt2=0;
scanf("%d", &n);
for(i=2; i<=n; i++) {
tmp = i;
j= 2;
while(1) {
if(tmp %j ==0) {
if(j==2) cnt1++;
else if(j == 5) cnt2++;
tmp = tmp/j; // 여기까지 소인수분해
}
else j++;
if(tmp == 1) break;
}
}
if(cnt1 < cnt2) printf("%d\n", cnt1);
else printf("%d\n", cnt2);
return 0;
}
'코딩테스트' 카테고리의 다른 글
LeetCode two.sum 배열 합산 반환 (0) | 2024.09.18 |
---|---|
1부터 N 까지 각각 / 3의 갯수는? (Small) (0) | 2024.09.18 |
소인수 분해 응용 (0) | 2024.09.18 |
마라톤 코드 (0) | 2024.09.18 |
석차 구하기 (브루트포스) (0) | 2024.09.18 |