题解 | #尼科彻斯定理#

尼科彻斯定理

http://www.nowcoder.com/practice/dbace3a5b3c4480e86ee3277f3fe1e85

#include<iostream>
#include<vector>
using namespace std;
bool isjishu(int d)
{
    if(d%2)
    {
       return true;
    }
    return false;
}
int main()
{
    int d;
    while(cin>>d)
    {
        int sum=d*d*d;
        vector<int>res;
        for(int i=1;i<sum;i++)
        {
            int temp=i;
            int c=1;
            int tsum=0;
            bool flag=false;
            res.clear();
            while(tsum<sum&&c<=d&&temp<sum)
            {
                if(isjishu(temp))
                {
                    c++;
                    tsum+=temp;
                    res.push_back(temp);
                }
                if(tsum==sum)
                {
                    flag=true;
                    break;
                }
                temp++;
            }
            if(flag)
            {
                break;
            }
        }
        string s;
        for(int i=0;i<res.size();i++)
        {
            if(i!=res.size()-1)
            {
                s+=to_string(res[i])+"+";
            }
            else
            {
                s+=to_string(res[i]);
            }
        }
        cout<<s<<endl;
    }
    return 0;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:52
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务