-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathSmartNumber.java
More file actions
32 lines (27 loc) · 785 Bytes
/
SmartNumber.java
File metadata and controls
32 lines (27 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class SmartNumber {
public static boolean isSmartNumber(int num) {
int val = (int) Math.sqrt(num);
if((double)num / val == val)
return true;
return false;
}
public static void main(String[] args) {
int test_cases;
Scanner in = new Scanner(System.in);
test_cases = in.nextInt();
int num;
for(int i = 0; i < test_cases; i++){
num = in.nextInt();
boolean ans = isSmartNumber(num);
if(ans){
System.out.println("YES");
}
else System.out.println("NO");
}
}
}