A. The Meaningless Game

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting.

The game consists of multiple rounds. Its rules are very simple: in each round, a natural number k is chosen. Then, the one who says (or barks) it faster than the other wins the round. After that, the winner's score is multiplied by k2, and the loser's score is multiplied by k. In the beginning of the game, both Slastyona and Pushok have scores equal to one.

Unfortunately, Slastyona had lost her notepad where the history of all n games was recorded. She managed to recall the final results for each games, though, but all of her memories of them are vague. Help Slastyona verify their correctness, or, to put it another way, for each given pair of scores determine whether it was possible for a game to finish with such result or not.

Input

In the first string, the number of games n (1 ≤ n ≤ 350000) is given.

Each game is represented by a pair of scores a, b (1 ≤ a, b ≤ 109) – the results of Slastyona and Pushok, correspondingly.

Output

For each pair of scores, answer "Yes" if it's possible for a game to finish with given score, and "No" otherwise.

You can output each letter in arbitrary case (upper or lower).

Example

Input
6
2 4
75 45
8 8
16 16
247 994
1000000000 1000000
Output
Yes
Yes
Yes
No
No
Yes

Note

First game might have been consisted of one round, in which the number 2 would have been chosen and Pushok would have won.

The second game needs exactly two rounds to finish with such result: in the first one, Slastyona would have said the number 5, and in the second one, Pushok would have barked the number 3.

a×b能开立方根并且立方根同时整除a、b则可以,否则不可以

#include<cstdio>
#include<cmath>
#define ll long long int main()
{
int n;
scanf("%d",&n);
while(n--)
{
ll a,b;//注意数值类型
scanf("%I64d%I64d",&a,&b);
ll ans = ceil(pow(a*b, 1.0/3));//向上取整
if(ans*ans*ans == a*b && a%ans == 0 && b%ans ==0)
printf("Yes\n");
else
printf("No\n");
}
return 0;
}

真的好神奇!!!

最新文章

  1. Git使用详细教程(一)
  2. 用介个新的blog咯..
  3. Unity中Time.deltaTime的含义及其应用
  4. 【转】PHP计划任务:如何使用Linux的Crontab执行PHP脚本
  5. centos6.5 nginx开机启动
  6. [RM HA 2] Hadoop 2.0 ResourceManager HA原理
  7. SQL 的一些概念问答
  8. WIN8+VS2013编写发布WCF之一(编写)
  9. maven_修改setting ,改为自己私服或者OSC开源中国 [为解决sqlite-jdbc 在中央仓库找不到]
  10. messagebox在最顶层写法
  11. Java 多态、内部类、异常、包
  12. myeclipse 2014 customize_Perspective 失效解决方法-有效
  13. PVID和VID彻底研究(上) ——PVID的作用及和VID的区别
  14. leetcode — two-sum-ii-input-array-is-sorted
  15. 网络编程socket之一
  16. Github的建立及心得体会
  17. numpy-Randow
  18. socketserver实例化过程
  19. Three.js开发指南---使用three.js的材质(第四章)
  20. ios开发之--解决“Could not insert new outlet connection”的问题。

热门文章

  1. 【原】Coursera—Andrew Ng机器学习—Week 6 习题—Advice for applying machine learning
  2. 【原】Coursera—Andrew Ng机器学习—课程笔记 Lecture 9_Neural Networks learning
  3. java 整数存储为2进制补码形式
  4. Reducing File Size
  5. Reactjs+BootStrap开发自制编程语言Monkey的编译器:创建简易的页面IDE
  6. CS API 测试2
  7. c++ std::unordered_set
  8. c++对象模型是什么,对象的内存布局和结构问题
  9. java判断一个数是否为素数[转]
  10. 修改字段注释modify