본문 바로가기
알고리즘 문제풀이/백준

[알고리즘/백준] 2884 알람 시계(자바, LocalTime)

by jeonghaemin 2021. 9. 19.
728x90

문제

https://www.acmicpc.net/problem/2884

문제 풀이

  • LocalTime 클래스의 minusMinutes 메서드를 사용하여 시간 뺄셈
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        int hour = Integer.parseInt(st.nextToken());
        int minute = Integer.parseInt(st.nextToken());

        LocalTime localTime = LocalTime.of(hour, minute).minusMinutes(45);
        System.out.println(localTime.getHour() + " " + localTime.getMinute());
    }
}

댓글