최대 1 분 소요

[백준 2525번] 오븐 시계

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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
 
public class 백준_손수경_정답_2525 {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        int h = Integer.valueOf(st.nextToken());
        int m = Integer.valueOf(st.nextToken());
        int cook = m;
        cook += Integer.valueOf(br.readLine());
        if (cook >= 60) {
            h += cook / 60;
            cook -= 60 * (cook / 60);
            if (h > 23) {
                h -= 24;
            }
        }
        System.out.printf("%d %d\n", h, cook);
 
    }
}
 
cs

풀이 방법

요리 시간이 주어지면 그 시간을 더하여 출력하는 문제이다. 분은 60분이 넘을때 시까지 변경시켜주어야 하고, 시가 23을 넘을 경우 다시 0부터 시작하는 처리를 해주었다.

댓글남기기