Preparando MOJI

Perfect Squares

1000ms 262144K

Description:

Given an array a1, a2, ..., an of n integers, find the largest number in the array that is not a perfect square.

A number x is said to be a perfect square if there exists an integer y such that x = y2.

Input:

The first line contains a single integer n (1 ≤ n ≤ 1000) — the number of elements in the array.

The second line contains n integers a1, a2, ..., an ( - 106 ≤ ai ≤ 106) — the elements of the array.

It is guaranteed that at least one element of the array is not a perfect square.

Output:

Print the largest number in the array which is not a perfect square. It is guaranteed that an answer always exists.

Sample Input:

2
4 2

Sample Output:

2

Sample Input:

8
1 2 4 8 16 32 64 576

Sample Output:

32

Note:

In the first sample case, 4 is a perfect square, so the largest number in the array that is not a perfect square is 2.

Informação

Codeforces

Provedor Codeforces

Código CF914A

Tags

brute forceimplementationmath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:22:34

Relacionados

Nada ainda