文章

43

粉丝

180

获赞

21

访问

195.0k

头像
c++(map做法)
P1450 西安电子科技大学机试题
发布于2022年4月26日 18:25
阅读数 3.8k

#include <iostream>
#include <unordered_map>

using namespace std;

int a, b;

void check(int x)
{
	int res = 0;
	unordered_map<int, int> h;
	for (int i = 1; i <= x / i; i ++ )
		if (x % i == 0) h[i] ++, h[x / i] ++;
	for (auto p : h) res += p.first;
	if (2 * x == res) cout << x << endl;
}

int main()
{
	cin >> a >> b;
	for (int i = a; i <= b; i ++ ) check(i);
	return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发