题解 | 自守数

自守数

https://www.nowcoder.com/practice/88ddd31618f04514ae3a689e83f3ab8e

#include <bits/stdc++.h>
using namespace std;

int f[1000]; 

int main() {
    int n;
    cin >> n;

    int ans = 1; // 初始化答案计数器为1,因为1是一个自守数

    for(int i = 1; i <= n; i++) { // 遍历从1到n的所有整数
        string x = to_string(i * i); // 计算 i 的平方,并将其转换为字符串
        // 检查 i 的字符串形式是否等于其平方字符串的后缀
        if(to_string(i) == x.substr(x.size() - to_string(i).size())) {
            ans++; // 如果是自守数,答案计数器加1
        }
    }

    cout << ans << endl;
    return 0;
}

全部评论

相关推荐

10-31 13:04
南华大学 Java
嵌入式的小白:很多面试,面试前不会去打扰cto的,但一般cto不会在这些小事上刷人,只能说这个cto比较操心,啥重要不重要,紧急不紧急的,估计都会过问,平淡看待吧
点赞 评论 收藏
分享
karis_aqa:和hr没关系,都是打工的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务