본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24313번 알고리즘 수업 - 점근적 표기 1

by 현장 2024. 2. 22.

-Code

a1, a0 = map(int, input().split())
c = int(input())
n0 = int(input())
if a1 * n0 + a0 <= c * n0 and a1 <= c:
    print(1)
else:
    print(0)