题解 | #自守数#
自守数
https://www.nowcoder.com/practice/88ddd31618f04514ae3a689e83f3ab8e
#include <iostream>
using namespace std;
int main() {
int n;
while (cin >> n) { // 注意 while 处理多个 case
int ans = 0;
int temp = 10; //几位数
for (int i = 0; i <= n; i++) {
if (i / temp) temp *=10;
if (i * (i - 1) % temp == 0)
ans++;
}
cout << ans << endl;
}
}
// 64 位输出请用 printf("%lld")
腾讯成长空间 5933人发布