题解 | #兔子的序列#

兔子的序列

https://www.nowcoder.com/practice/55fc2ebad3fd444bbb1754ba1b259762

import java.util.Scanner;
import java.util.Arrays;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for(int i = 0; i < n; i++){
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        for(int j = n -1; j>=0; j--){
            if(Math.sqrt(arr[j]) % 1 != 0.0){
                System.out.print((int)arr[j]);
                return;
            }
        }
        
    }
}

全部评论

相关推荐

2025-12-26 14:44
复旦大学 Java
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
2025-12-17 17:40
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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