Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Data Structure
- Tree
- Counting
- Matrix
- Binary Tree
- 자바
- 파이썬
- two pointers
- implement
- Binary Search
- string
- array
- dynamic programming
- Method
- 코테
- 구현
- simulation
- greedy
- Math
- database
- Class
- sorting
- java
- bit manipulation
- geometry
- Stack
- Number Theory
- hash table
- 코딩테스트
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 2869. 달팽이는 올라가고 싶다 본문
땅에 있는 달팽이가 높이 V미터인 나무 막대를 올라가려 한다. 달팽이는 낮에 A미터를 올라가고, 밤에 자는 동안 B미터 미끄러진다. 정상에 도착하면 미끄러지지 않는다.
- 입력: 첫째 줄에 세 정수 A, B, V가 공백으로 구분되어서 주어진다. (1 ≤ B < A ≤ V ≤ 1,000,000,000)
- 출력: 첫째 줄에 달팽이가 나무 막대를 모두 올라가는데 며칠이 걸리는지 출력한다.
import java.util.*;
class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int a = scan.nextInt(), b = scan.nextInt(), v = scan.nextInt();
int answer = (v-a)/(a-b);
if((v-a)%(a-b)==0) answer++;
else answer += 2;
System.out.print(answer);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 24263. 알고리즘 수업 - 알고리즘의 수행 시간 2 (0) | 2023.04.07 |
---|---|
[백준 온라인 저지] 24262. 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2023.04.07 |
[LeetCode/Easy] 1185. Day of the Week (0) | 2023.04.06 |
[LeetCode/Easy] 1189. Maximum Number of Balloons (0) | 2023.04.06 |
[LeetCode/Easy] 1200. Minimum Absolute Difference (0) | 2023.04.06 |