1 条题解
-
0
的位数为
#include <bits/stdc++.h> #define int long long using namespace std; int n; // 返回 x^x 的位数 int f(int x) { return x * log10(x) + 1; } signed main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; int l = 1; int r = 2'000'000'000; int ans = -1; while (l <= r) { int mid = (l + r) / 2; if (f(mid) >= n) { ans = mid; r = mid - 1; } else l = mid + 1; } cout << ans << "\n"; return 0; }
- 1
信息
- ID
- 1320
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 8
- 标签
- 递交数
- 31
- 已通过
- 7
- 上传者