题解 | #自守数#

自守数

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

将数的比较,转化为字符串的比较

#include <iostream>

int main(int argc, char const *argv[])
{
    int n = 0;
    while (std::cin >> n)
    {
        int count = 2;
        for (int i = 2; i <= n; i++)
        {
            long j = i * i;
            std::string sl = std::to_string(j);
            std::string si = std::to_string(i);

            std::size_t sn = sl.rfind(si);   //从长串的末尾开始找到子串的位置
            if (sl.size() - sn == si.size()) //长串的长度-子串首字符的位置=子串的长度
            {
                count++;
            }
        }

        std::cout << count << std::endl;
    }

    return 0;
}
全部评论

相关推荐

10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务