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 201 개
    • C/C++/Pyhthon
      • C ++(1)
      • Python(22)
      • Pytorch(12)
      • 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(39)
      • 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 개 :)

    [논문리뷰]LLM2Vec: Large Language Models Are Secretly Powerful Text Encoders(COLM, 2024) 2025.09.17
    [논문리뷰]Gecko: Versatile Text Embeddings Distilled from Large Language Models(DeepMinde, 2024) 2025.09.16
    [논문리뷰]DRAMA: Diverse Augmentation from Large Language Models to Smaller Dense Retrievers(ACL, 2025) 2025.09.15
    [논문리뷰]D2LLM:Decomposed and Distilled Large Language Models for Semantic Search(ACL, 2024) 2025.09.11
    [논문리뷰]Memory Decoder: Memory for Large Language Models(arXiv, 2025) 2025.09.10
    [논문리뷰]Long-Context LLMs Meet RAG: Overcoming Challenges for Long Inputs in RAG(ICLR, 2025) 2025.09.05
    [논문리뷰]Multi-level Relevance Document Identifier Learning for Generative Retrieval(ACL, 2025) 2025.08.11
    [논문리뷰]Self-Retrieval: End-to-End Information Retrieval with One Large Language Model(NeurIPS, 2024) 2025.08.10
    [논문리뷰]GraphCare: Enhancing Healthcare Predictions with Personalized Knowledge Graphs(ICLR, 2024) 2025.08.07
    [논문리뷰]EfficientRAG: Efficient Retriever for Multi-Hop Question Answering(EMNLP, 2024) 2025.07.04
    • 팔로우:
    • 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">