CF1594F.Ideal Farm
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Theofanis decided to visit his uncle's farm. There are s animals and n animal pens on the farm. For utility purpose, animal pens are constructed in one row.
Uncle told Theofanis that a farm is lucky if you can distribute all animals in all pens in such a way that there are no empty pens and there is at least one continuous segment of pens that has exactly k animals in total.
Moreover, a farm is ideal if it's lucky for any distribution without empty pens.
Neither Theofanis nor his uncle knows if their farm is ideal or not. Can you help them to figure it out?
输入格式
The first line contains a single integer t ( 1≤t≤105 ) — the number of test cases.
The first and only line of each test case contains three integers s , n , and k ( 1≤s,n,k≤1018 ; n≤s ).
输出格式
For each test case, print YES (case-insensitive), if the farm is ideal, or NO (case-insensitive) otherwise.
输入输出样例
输入#1
4 1 1 1 1 1 2 100 50 200 56220 47258 14497
输出#1
YES NO NO YES
说明/提示
For the first and the second test case, the only possible combination is [1] so there always will be a subsegment with 1 animal but not with 2 animals.