题解 | #序列和#

序列和

https://www.nowcoder.com/practice/46eb436eb6564a62b9f972160e1699c9

#include<iostream>

using namespace std;
int main(){
    
    int N=0,L=0;
    bool have_out=0;
    while(cin>>N>>L){
        have_out=0;
        while(L<=100&&N>=(L*(L-1)/2)){      
            if((2*N-L*L+L)%(2*L)==0){
                int n=(2*N-L*L+L)/(2*L);
                for(int i=0;i<L;i++){
                    cout<<n+i;
                    if(i!=L-1){
                        cout<<' ';
                    }
                }
                cout<<endl;
                have_out=1;
                break;
            }
            L++;
        }
        
        if(have_out==0){
            cout<<"No"<<endl;
        }
    }
    return 0;
    
    
}

#网易雷火#
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:28
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务