欢迎来到起遇信息学
起遇信息学正处于上线筹建阶段,以下功能已全部开放免费体验: ✅ 完整题库浏览与代码提交评测(C / C++ / Python / Java 等) ✅ 入门到进阶的系列课程试读、作业与考试 ✅ AI 提示、AI 作业分析等智能助教功能 ✅ 赛事模拟与个人能力报告 ✅ 邮箱注册开放 ⏳ 付费课程订阅与微信/支付宝支付通道 ⏳ 手机号登录,微信扫码登录、微信公众号绑定 使用中如遇任何问题,欢迎通过页面底部 **"联系我们"** 与我们沟通。
CF1341A.Nastya and Rice
Nastya and Rice
Nastya just made a huge mistake and dropped a whole package of rice on the floor. Mom will come soon. If she sees this, then Nastya will be punished.
In total, Nastya dropped grains. Nastya read that each grain weighs some integer number of grams from to , inclusive (numbers and are known), and the whole package of grains weighs from to grams, inclusive (numbers and are known). The weight of the package is the sum of the weights of all grains in it.
Help Nastya understand if this information can be correct. In other words, check whether each grain can have such a mass that the -th grain weighs some integer number , and in total they weigh from to , inclusive (c - d \leq um\limits_{i=1}^{n}{x_i} \leq c + d).
Input
The input consists of multiple test cases. The first line contains a single integer — the number of test cases.
The next lines contain descriptions of the test cases, each line contains integers: — the number of grains that Nastya counted and $(0 \leq b \lt a \leq 1000, 0 \leq d \lt c \leq 1000)$ — numbers that determine the possible weight of one grain of rice (from to ) and the possible total weight of the package (from to ).
Output
For each test case given in the input print "Yes", if the information about the weights is not inconsistent, and print "No" if grains with masses from to cannot make a package with a total mass from to .
Note
In the first test case of the example, we can assume that each grain weighs grams, and a pack grams, then really Nastya could collect the whole pack.
In the third test case of the example, we can assume that each grain weighs grams, and a pack grams, then really Nastya could collect the whole pack.
In the fifth test case of the example, we can be assumed that grains of rice weigh , , and grams, and a pack is grams, then really Nastya could collect the whole pack.
In the second and fourth test cases of the example, we can prove that it is impossible to determine the correct weight of all grains of rice and the weight of the pack so that the weight of the pack is equal to the total weight of all collected grains.
Samples
5
7 20 3 101 18
11 11 10 234 2
8 9 7 250 122
19 41 21 321 10
3 10 8 6 1
Yes
No
Yes
No
Yes
在线编程 IDE
建议全屏模式获得最佳体验
| 进入全屏编程 | Alt+E |
| 递交评测 | Ctrl+Enter |
| 注释/取消注释 | Ctrl+/ |
| 缩放字体 | Ctrl+滚轮 |