[백준] 10156번 : 과자 - Python(파이썬)

강재원·2022년 9월 9일
0

[코딩테스트] Python

목록 보기
23/200



https://www.acmicpc.net/problem/10156

k,n,m=map(int,input().split())
sum=k*n-m
if sum>0: print(sum)
else: print(0)
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글