[백준] 2884 알람 시계 - Java

Yunki Kim·2022년 11월 27일
0

백준

목록 보기
24/104
post-thumbnail

문제


링크


코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

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 h = Integer.parseInt(st.nextToken());
        int m = Integer.parseInt(st.nextToken());

        m -= 45;
        if (m < 0) {
            h--;
            if (h < 0) {
                h = 23;
            }
            m += 60;
        }
        System.out.println(h + " " + m);
        br.close();
    }
}

리뷰

기본적인 사칙연산에 시계의 규칙을 적용하여 푸는 문제이다.

0개의 댓글