본문 바로가기
전공공부/코딩테스트

(c++) 백준 "1676) 팩토리얼 0의 개수"

by 시아나 2022. 6. 5.

https://www.acmicpc.net/problem/1676

 

1676번: 팩토리얼 0의 개수

N!에서 뒤에서부터 처음 0이 아닌 숫자가 나올 때까지 0의 개수를 구하는 프로그램을 작성하시오.

www.acmicpc.net

 


#include <iostream>
using namespace std;

int main() {
	int N; cin >> N;
	int two = 0, five = 0;
	for (int i = 2; i <= N; i++) {
		int n = i;
		while (n % 2 == 0) {
			two++;
			n /= 2;
		}
		n = i;
		while (n % 5 == 0) {
			five++;
			n /= 5;
		}
	}
	cout << min(two,five) << endl;
	return 0;
}