[백준 알고리즘] 2869번 달팽이는 올라가고 싶다(Python)
언어, 알고리즘 공부/백준2020. 3. 1. 22:41[백준 알고리즘] 2869번 달팽이는 올라가고 싶다(Python)

A, B, V = map(int, input().split()) day = (V-B)/(A-B) if day == int(day): print(int(day)) else: print(int(day)+1) ▼링크 https://www.acmicpc.net/problem/2869

image