baekjoon - python - 2530
https://www.acmicpc.net/problem/2530 2530번: 인공지능 시계 첫째 줄에 종료되는 시각의 시, 분, 초을 공백을 사이에 두고 출력한다. (단, 시는 0부터 23까지의 정수이며, 분, 초는 0부터 59까지의 정수이다. 디지털 시계는 23시 59분 59초에서 1초가 지나면 0시 0 www.acmicpc.net # @Author YoungMinKim # baekjoon import datetime h,m,s = map(int,input().split()) s2 = int(input()) now = str(datetime.timedelta(hours=h,minutes=m,seconds=s)+datetime.timedelta(seconds=s2)) h = now.split(':')[..
2020. 8. 24.