BOJ 28293 - 자릿수

image.png

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

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