-
Notifications
You must be signed in to change notification settings - Fork 0
/
B.cpp
42 lines (40 loc) · 797 Bytes
/
B.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include<bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(false);cin.tie(NULL)
long long ara[100005];
int main()
{
fastio;
long long t,n,i,l,r,p,temp;
cin>>t;
while(t--)
{
cin>>n>>l>>r;
p=0;
for(i=0;i<n;i++)
{
if(l%(i+1)==0)
ara[i]=l;
else
{
temp=(1+l/(i+1))*(i+1);
if(temp>r)
{
p=1;
break;
}
ara[i]=temp;
}
}
if(p==1)
cout<<"NO\n";
else
{
cout<<"YES\n";
for(i=0;i<n;i++)
cout<<ara[i]<<" ";
cout<<"\n";
}
}
return 0;
}