Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Database
- 그리디 알고리즘
- CTF
- SuNiNaTas
- cryptography
- Python
- 정렬
- 구현
- C
- wargame
- HackCTF
- Web Hacking
- writeup
- 인코그니토
- php
- 문자열
- 써니나타스
- 사칙연산
- 수학
- Forensics
- Text
- MySQL
- N0Named
- xcz.kr
- Digital Forensics
- Network
- Incognito
- 백준
- misc
- Web
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5575번 타임 카드 본문
[Baekjoon/Python3] 5575번 타임 카드
for i in range(3):
in_h, in_m, in_s, out_h, out_m, out_s = map(int, input().split())
time = (out_h * 3600 + out_m * 60 + out_s) - (in_h * 3600 + in_m * 60 + in_s)
print(time // 3600, (time % 3600) // 60, (time % 3600) % 60)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5596번 시험 점수 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5585번 거스름돈 (0) | 2020.12.05 |
[Baekjoon/Python3] 5565번 영수증 (0) | 2020.12.05 |
[Baekjoon/Python3] 5555번 반지 (0) | 2020.12.05 |
[Baekjoon/Python3] 5554번 심부름 가는 길 (0) | 2020.12.05 |
Comments