题解 | #自守数#

自守数

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

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            int n = sc.nextInt();
            int count = 0;
            for (int i = 0; i <= n; i++) {
                long square = (long) Math.pow(i, 2);
                String squareStr = String.valueOf(square);
                String s = String.valueOf(i);
                if (squareStr.indexOf(s) == (squareStr.length() - s.length())) {
                    count++;
                }

            }
            System.out.println(count);
        }
        sc.close();
    }
}
全部评论

相关推荐

09-29 00:03
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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