leehyeon-dv 님의 블로그

(조건문)알람 시계 본문

코딩테스트/백준

(조건문)알람 시계

leehyeon-dv 2024. 12. 29. 20:18

📌 45분 일찍 알람 설정하기

 

 

🔻입출력

 

🔓알고리즘

  • 수학
  • 사칙연산

 

🐍파이썬

H,M = map(int, input().split())

if(0<=H<=23 and 0<=M<=59):
    if(M>=45):
      print(H, M-45)
    else:
      H = H -1 if H > 0 else 23
      print(H, M+15)
else:
    print("다시 입력")

 

🧩자바

import java.util.Scanner;

public class 알람시계 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int H = sc.nextInt();
        int M = sc.nextInt();

        if (0 <= H && H <= 23 && 0 <= M && M <= 59) {
            if (M >= 45)
                System.out.println(H + " " + (M - 45));
            else {
                H = H - 1 < 0 ? 23 : H - 1;
                System.out.println(H + " " + (M + 15));
            }
        } else {
            System.out.println("다시입력");
        }

    }
}

'코딩테스트 > 백준' 카테고리의 다른 글

(반복문) 별찍기 (1)  (1) 2024.12.31
(반복문)A+B(8)  (0) 2024.12.31
(반복문)빠르게 A+B(7)  (0) 2024.12.31
(반복문)두 정수 A,B를 입력해 A+B출력  (0) 2024.12.29
(조건문) 사분면 고르기  (0) 2024.12.29