-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24296번 ЛИНИЯ (0) | 2024.02.24 |
---|---|
[백준/파이썬] 7130번 Milk and Honey (0) | 2024.02.23 |
[백준/파이썬] 11520번 And Then There Was 5 (0) | 2024.02.21 |
[백준/파이썬] 31428번 엘리스 트랙 매칭 (0) | 2024.02.20 |
[백준/파이썬] 28940번 Дневник Гравити Фолз (0) | 2024.02.19 |