码迷,mamicode.com
首页 > 其他好文 > 详细

5.19 Vj E - Nastya and Rice

时间:2020-05-19 13:02:47      阅读:45      评论:0      收藏:0      [点我收藏+]

标签:lse   max   turn   for   超过   bsp   name   define   efi   

#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,不符合题意
  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;
        }
    }
    return 0;
}

5.19 Vj E - Nastya and Rice

标签:lse   max   turn   for   超过   bsp   name   define   efi   

原文地址:https://www.cnblogs.com/SyrupWRLD999/p/12916127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!