5.19 Vj E - Nastya and Rice
Posted syrupwrld999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.19 Vj E - Nastya and Rice相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
#define ll long long
using namespace std;
/*
max 7*23=161 max2 119
7
min 7*17=119 min2 83 如果超过119,不符合题意
#define ll long long
using namespace std;
/*
max 7*23=161 max2 119
7
min 7*17=119 min2 83 如果超过119,不符合题意
max 11*21=231 max2 236 最高不够232,不合题意
11
min 11*1=11 min2 232
因此,max不能小于min2,min不能大于max2
*/
int main( )
{
int t,a,b,c,d,x,y,n,xx,yy;
cin>>t;
for(int i=0;i<t;i++)
{
cin>>n>>a>>b>>c>>d;
x=a+b;
y=a-b;
xx=c+d;
yy=c-d;
if(n*y>xx||n*x<yy)//
{
cout<<"No"<<endl;
}
else{
cout<<"Yes"<<endl;
}
}
11
min 11*1=11 min2 232
因此,max不能小于min2,min不能大于max2
*/
int main( )
{
int t,a,b,c,d,x,y,n,xx,yy;
cin>>t;
for(int i=0;i<t;i++)
{
cin>>n>>a>>b>>c>>d;
x=a+b;
y=a-b;
xx=c+d;
yy=c-d;
if(n*y>xx||n*x<yy)//
{
cout<<"No"<<endl;
}
else{
cout<<"Yes"<<endl;
}
}
return 0;
}
}
以上是关于5.19 Vj E - Nastya and Rice的主要内容,如果未能解决你的问题,请参考以下文章
5.23 VJ E - Candies and Two Sisters