#유형 : 구현, 시뮬레이션
# 난이도 : 브론즈2
# 어떤 경우가 운동을 끝낼 수 없는 경우인지를 생각해보고 풀면 쉽게 풀 수 있다. 현재 맥박에 T 를 더했을 때 M을 초과하면서 현재 맥박이 m이면 운동을 끝낼 수 없는 경우이다.
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package bj;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class p1173 {
static int N,m,M,T,R;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
T = Integer.parseInt(st.nextToken());
R = Integer.parseInt(st.nextToken());
int count = 0;
int time = 0;
int current = m;
// System.out.println(current);
while(count<N) {
if(current+T <= M) {
count++;
time++;
current += T;
}else {
if((current - R)< m) {
time++;
current = m ;
}else {
time++;
current -= R;
}
}
if(current + T > M && current == m) {
System.out.println("-1");
return;
}
// System.out.println(current);
}
System.out.println(time);
}
}
|
cs |
'백준' 카테고리의 다른 글
#백준_1331 나이트 투어 - Java 자바 (0) | 2020.02.21 |
---|---|
#백준_5427 불 - Java 자바 (0) | 2020.02.20 |
#백준_2174 로봇 시뮬레이션 - Java 자바 (0) | 2020.02.19 |
#백준_2931 가스관 - Java 자바 (0) | 2020.02.18 |
#백준_9205 맥주 마시면서 걸어가기 - Java 자바 (0) | 2020.02.17 |