BOJ 28293 - 자릿수

image.png

$\left\lfloor log_{10}{x} \right\rfloor+1$ 는 $x$의 자리수이다.

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);
}

Tags:

Categories:

Updated:

Comments