mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
dd3af96771
4900-4999
14 lines
318 B
C++
14 lines
318 B
C++
#include <stdio.h>
|
|
int main()
|
|
{
|
|
__int64 h,a,b,k,cas=1;
|
|
while(~scanf("%I64d%I64d%I64d%I64d",&h,&a,&b,&k),h+a+b+k)
|
|
{
|
|
if(a>=h||(a-b)*k-b>0||(a-b)*(k-1)+a>=h)
|
|
printf("Case #%I64d: YES\n",cas++);
|
|
else
|
|
printf("Case #%I64d: NO\n",cas++);
|
|
}
|
|
return 0;
|
|
}
|