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 |
Tags
- Git
- 파이썬
- 프로그래머스 파이썬
- 더현대서울 맛집
- dacon
- ChatGPT
- 편스토랑 우승상품
- 프로그래머스
- 코로나19
- PYTHON
- Real or Not? NLP with Disaster Tweets
- leetcode
- hackerrank
- gs25
- SW Expert Academy
- ubuntu
- 백준
- AI 경진대회
- 맥북
- 금융문자분석경진대회
- 편스토랑
- 자연어처리
- github
- programmers
- 우분투
- Kaggle
- 캐치카페
- Docker
- 데이콘
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 5928번 : Contest Timing (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Contest Timing 입니다.
5928번: Contest Timing
Bessie the cow is getting bored of the milk production industry, and wants to switch to an exciting new career in computing. To improve her coding skills, she decides to compete in the on-line USACO competitions. Since she notes that the contest starts on
www.acmicpc.net
🧑🏻💻 코드 ( Solution )
from datetime import datetime
def calculate_minute(D, H, M):
return D * 24 * 60 + H * 60 + M
def contest_timing(D, H, M):
start_time = calculate_minute(D=11, H=11, M=11)
end_time = calculate_minute(D=D, H=H, M=M)
contest_time = end_time - start_time
if contest_time < 0:
contest_time = -1
return contest_time
if __name__ == "__main__":
D, H, M = map(int, input().split())
print(contest_timing(D=D, H=H, M=M))
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 6763번 : Speed fines are not fine! (Python) (0) | 2022.11.16 |
---|---|
[BaekJoon] 21612번 : Boiling Water (Python) (0) | 2022.11.15 |
[BaekJoon] 16099번 : Larger Sport Facility (Python) (0) | 2022.11.13 |
[BaekJoon] 1551번 : 수열의 변화 (Python) (0) | 2022.11.12 |
[BaekJoon] 11006번 : 남욱이의 닭장 (Python) (0) | 2022.11.11 |