문제 링크

문제 요약

풀이

정답 코드

S, n, f, m = map(int, input().split())
S -= m
 
if S < n or S > n * f:
	print("NO")
else:
	print("YES")

연관 페이지

참고 문헌 / 사이트