概述
#define _CRT_SECURE_NO_WARNINGS 1
#include<bits/stdc++.h>
using namespace std;
/*使用int型大小不够,要用long long int*/
typedef long long LL;
set<LL> a;
int main()
{
LL n=2021041820210418;
/*循环取出n的所有因数*/
for (LL i = 1; i * i <= n; i++)
{
if (n % i == 0)
{
//满足这个条件下i是一个因数,n/i也是一个因数
a.insert(i);
a.insert(n / i);
}
}
int ans = 0;
/*循环寻找答案*/
for(auto b:a)
for(auto c:a)
for (auto d : a)
{
if (b * c * d == n)
ans++;
}
cout << ans;
return 0;
}
最后
以上就是善良溪流为你收集整理的2021蓝桥杯:货物摆放的全部内容,希望文章能够帮你解决2021蓝桥杯:货物摆放所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复