CompetitiveProgramming

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub null0124/CompetitiveProgramming

:warning: kyopro/library/math/prime_factor.cpp

Code

map<ll, int> prime_factor(ll a) {
	map<ll, int> ret;
	for (ll x = 2; x * x <= a; ++x) {
		while (not(a % x))++ret[x], a /= x;
	}
	if (a != 1)++ret[a];
	return ret;
}
#line 1 "kyopro/library/math/prime_factor.cpp"
map<ll, int> prime_factor(ll a) {
	map<ll, int> ret;
	for (ll x = 2; x * x <= a; ++x) {
		while (not(a % x))++ret[x], a /= x;
	}
	if (a != 1)++ret[a];
	return ret;
}
Back to top page