728x90
입력
a b c
c - a*b // c 절댓값 적용
돌려줄 잔돈이 없을경우 0 출력
코드
changes = list(map(int, input().split()))
price = changes[0] * changes[1]
result = changes[2]-price
if (result > 0) :
print(0)
else:
print(abs(result))
* abs(result) : 절댓값으로 만들어주는 함수
'Python > 백준' 카테고리의 다른 글
#11 [python] 1931번: 회의실 배정 (0) | 2023.10.19 |
---|---|
#10 [python] 11047번 동전 0 (0) | 2023.10.18 |
#8 [python] 10817 백준 파이썬 : 세 수 (0) | 2023.10.16 |
#7 [python] 백준: 5622번 다이얼 (0) | 2023.08.01 |
#6 [python] 백준 2908번: 상수 (0) | 2023.07.28 |