BOJ 28293 - 자릿수
는 의 자리수이다.
void solve() {
long double a, b;
cin >> a >> b;
long double ans = 1;
for(int i = 0 ; i < b; i++) ans += log10(a);
cout << ll(ans);
}
는 의 자리수이다.
void solve() {
long double a, b;
cin >> a >> b;
long double ans = 1;
for(int i = 0 ; i < b; i++) ans += log10(a);
cout << ll(ans);
}
Comments