백준 2869번 : 달팽이는 올라가고 싶다 (문제 바로가기) 내 코드 a,b,v=map(int,input().split()) if (v-b)%(a-b)==0: print((v-b)//(a-b)) else: print((v-b)//(a-b)+1)