Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hackerrank
- Real or Not? NLP with Disaster Tweets
- 편스토랑
- 백준
- 파이썬
- 자연어처리
- 데이콘
- Baekjoon
- Docker
- 코로나19
- dacon
- Kaggle
- 더현대서울 맛집
- 우분투
- programmers
- 프로그래머스 파이썬
- PYTHON
- github
- leetcode
- gs25
- 맥북
- 캐치카페
- 편스토랑 우승상품
- ChatGPT
- 금융문자분석경진대회
- ubuntu
- Git
- AI 경진대회
- SW Expert Academy
- 프로그래머스
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 5575번 : 타임카드 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 타임카드 입니다.
👨🏻💻 문제 풀이
2022.01.19 - [Programming/Python] - [Python] datetime의 strptime을 활용하여 시간과 시간 사이의 차이 구하는 방법
Python의 strptime을 활용하여 문제를 풀었습니다.
👨🏻💻 코드 ( Solution )
from datetime import datetime
def split_start_end_time(work_time):
work_time = work_time.split()
start_time = ":".join(work_time[:3])
end_time = ":".join(work_time[3:])
return start_time, end_time
def convert_second_to_hour_minute_second(second):
hour = second // 3600
minute = (second // 60) - (hour * 60)
sec = second - (minute * 60) - (hour * 3600)
return hour, minute, sec
def time_card(work_time):
work_start, work_end = split_start_end_time(work_time=work_time)
work_start = datetime.strptime(work_start, "%H:%M:%S")
work_end = datetime.strptime(work_end, "%H:%M:%S")
work_total_time = (work_end - work_start).seconds
hour, minute, sec = convert_second_to_hour_minute_second(second=work_total_time)
return f"{hour} {minute} {sec}"
if __name__ == "__main__":
A_time = input()
B_time = input()
C_time = input()
print(time_card(A_time))
print(time_card(B_time))
print(time_card(C_time))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2420번 : 사파리월드 (Python) (0) | 2022.04.01 |
---|---|
[BaekJoon] 15964번 : 이상한 기호 (Python) (0) | 2022.03.31 |
[BaekJoon] 5337번 : 웰컴 (Python) (0) | 2022.03.29 |
[BaekJoon] 5554번 : 심부름 가는 길 (Python) (0) | 2022.03.28 |
[BaekJoon] 16170번 : 오늘의 날짜는? (Python) (0) | 2022.03.27 |
Comments