码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 833A The Meaningless Game

时间:2017-08-24 20:01:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:style   class   printf   round   logs   code   int   define   整数   

http://codeforces.com/problemset/problem/833/A

a*b开三方,检查是否是整数且a,b能整除它就好。

#include<cstdio> 
#include<cmath>  
using namespace std;   
#define ll long long
int T;  
ll a,b;
int main(){  
    scanf("%d",&T);
    while(T--){  
        scanf("%lld%lld",&a,&b);  
        ll c=a*b;  
        c=round(pow((double)c,1.0/3));  
        if(c*c*c!=a*b||a%c||b%c) printf("No\n");  
        else printf("Yes\n");  
    }    
    return 0;  
}

 

Codeforces 833A The Meaningless Game

标签:style   class   printf   round   logs   code   int   define   整数   

原文地址:http://www.cnblogs.com/nzher/p/7424671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!