Skip links

  • Skip to primary navigation
  • Skip to content
  • Skip to footer
Meaningful AI Visitors
  • Home
  • Category
  • Kor
  • Eng
    1. Home
    2. /
    3. Baekjoon
    4. /
    5. [백준]2884번 알람 시계
    Meaningful

    Meaningful

    Greeting :)

    • Email
    • GitHub
    • LinkedIn
    • 📂 Total Posts 211 개
    • C/C++/Pyhthon
      • C ++(1)
      • Python(22)
      • Pytorch(15)
      • Linux(7)
      • 백준(23)
      Computer Science
      • AI Math(1)
      • Data Structure(15)
      • Algorithm(5)
      • 컴퓨터 공학(1)
      AI Science
      • Machine Learning(3)
      • Deep Learning(22)
      • 그래프 AI(17)
      • 자연어 처리(11)
      Paper Review
      • Graph(18)
      • NLP(46)
      • HealthCare(1)
      Else
      • Error Analysis(1)
      • Etc(2)

    [백준]2884번 알람 시계

    Date: 2022.12.07    Updated: 2022.12.07

    카테고리: Baekjoon

    목차

    • 문제
    • 풀이

    문제

    image

    풀이

    H, M = map(int, input().split())
    if M > 44:
        print(H, M - 45)
    elif M <= 44 and H > 0:
        print(H-1, M + 15)
    else:
        print(23, M + 15)
    

    Baekjoon 카테고리 내 다른 글 보러가기

    이전 글  [백준]2753번 윤년 다음 글   [백준]2525번 오븐 시계

    공유하기

    Twitter Facebook LinkedIn

    댓글 남기기

    최근 글 10 개 :)

    [Pytorch] 분산 학습 3: 완전 분할 데이터 병렬 처리 (FSDP) 2025.10.08
    [Pytorch] 분산 학습 2: DP와 DDP 비교 2025.10.08
    [Pytorch] 분산 학습 1: GIL의 기본 개념 2025.10.08
    [논문리뷰]Draft & Verify: Lossless Large Language Model Acceleration via Self-Speculative Decoding(ACL, 2024) 2025.09.30
    [논문리뷰]REFRAG: Rethinking RAG based Decoding(Meta, 2025) 2025.09.26
    [논문리뷰]Learning to Compress Prompts with Gist Tokens (NeurIPS, 2023) 2025.09.23
    [논문리뷰]DAC: A Dynamic Attention-aware Approach for Task-Agnostic Prompt Compression (ACL, 2025) 2025.09.22
    [논문리뷰]UniICL: An Efficient Unified Framework Unifying Compression, Selection, and Generation (ACL, 2025) 2025.09.20
    [논문리뷰]Optimizing Question Semantic Space for Dynamic Retrieval-Augmented Multi-hop Question Answering (ACL, 2025) 2025.09.19
    [논문리뷰]GritLM: Generative Representational Instruction Tuning (ICLR, 2025) 2025.09.18
    • 팔로우:
    • GitHub
    • LinkedIn
    • 피드
    © 2025 Meaningful96. Powered by Jekyll & Minimal Mistakes.
    script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML">