[백준] 2869번: 달팽이는 올라가고 싶다 - JAVA
·
알고리즘
[작성일: 2023. 09. 23] https://www.acmicpc.net/problem/2869  풀이import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int up = sc.nextInt(); int down = sc.nextInt(); int height = sc.nextInt(); sc.close(); int distanceToClimb = height - down; // 달팽이가 실제로 올라가는 높이 int climbPerDay = ..