UDP广播协议叫吃饭


私信TA

用户名:Mustenaka

访问量:149581

签 名:

个人博客www.mustenaka.cn

等  级
排  名 13
经  验 25386
参赛次数 8
文章发表 197
年  龄 3
在职情况 学生
学  校 Sky_box
专  业 NE

  自我简介:

欢迎光临我的博客www.mustenaka.cn,Python,C#,U3D,C/C++开发合作可以找我

解题思路:
    真的水一下就过了......题目可以更难一点的。。

    思路就是线性搜索直接判断咯/
参考代码:

#include<bits/stdc++.h>
#define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std; 
int n;
int a,b;
int main(){
	hh;
	cin>>n;
	while(n--){
		int ansA=0,ansB=0;
		cin>>a>>b;
		int len=(a>b)?a:b;
		for(int i=1;i<=len;i++){
			if(a%i==0&&a!=i){
				ansA+=i;
			}
			if(b%i==0&&b!=i){
				ansB+=i;
			}
		}
		if(ansA==b&&ansB==a){
			cout<<"YES"<<endl;
		}else{
			cout<<"NO"<<endl;
		}
	}
	
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »