7-1 大美数 (15 分)

分析

  • 视频讲解:
  • 求先出所有因子,然后从因子中选4个数,使得这四个数之后可以整除x
  • 我的小学数学可真烂,整除的意思都没掌握。a整除b的意思是b能被a整除。

代码

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <cstdio>
#include <cctype>
#include <unordered_map>
#include <map>
using namespace std;

int main(){
	int n, x;
	cin>>n;
	while(n--){
		cin>>x;
		int sq =  sqrt(x);
		vector<int> vt; //存所有因子 
		for(int i = 1; i <= sq; i++){
			if(x%i==0){
				vt.push_back(i);
				vt.push_back(x/i);
			}	
		}
		
		if(sq*sq == x) vt.pop_back();
	
		int tag = 0;
		int m = vt.size();
		for(int a = 0; a < m-3 && !tag; a++){
			for(int b = a+1; b < m-2 && !tag; b++){
				for(int c = b+1; c < m-1 && !tag; c++){
					for(int d = c+1; d < m; d++){
						int sum = vt[a]+vt[b]+vt[c]+vt[d];
						if(sum%x==0){
							tag = 1;
							break;
						}
					}
				}
			}
		}
		if(tag) cout<<"Yes"<<endl;	
		else cout<<"No"<<endl;	
	}
	return 0;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值