일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로그래머스
- java
- Combinations
- KAKAO BLIND RECRUITMENT
- divmod
- 그리디
- programmers
- 파이썬
- 수학
- BFS
- Zip
- Set
- dfs
- python
- 다익스트라
- lambda
- 위클리 챌린지
- heapq
- 추석맞이 코딩챌린지
- 정규식
- backjoon
- 재귀함수
- 카카오
- DateTime
- Re
- 자바
- 동적 계획법
- 정렬
- 백준
- 이분탐색
Archives
- Today
- Total
상상쓰
[백준] 인공지능 시계 본문
https://www.acmicpc.net/problem/2530
datetime 을 이용하여 시간을 설정하고 시간을 연산할 수도 있다.
import sys, datetime
h, m, s = map(int, sys.stdin.readline().split())
seconds = int(sys.stdin.readline())
now = datetime.datetime(2021, 8, 19, h, m, s)
answer = now + datetime.timedelta(seconds=seconds)
print(answer.hour, answer.minute, answer.second)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 문자열 압축 (0) | 2021.08.20 |
---|---|
[프로그래머스] 신규 아이디 추천 (0) | 2021.08.19 |
[백준] 초콜릿 자르기 (0) | 2021.08.19 |
[프로그래머스] 3주차_퍼즐 조각 채우기 (0) | 2021.08.18 |
[백준] 터렛 (0) | 2021.08.17 |
Comments