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

코딩 1일 1문제! 오늘의 문제는 백준의 Triathlon 입니다.
25600번: Triathlon
트라이애슬론(Triathlon)이란 라틴어에서 $3$가지라는 의미를 가진 tri와 경기를 뜻하는 athlon의 합성어이다. 우리나라에서는 트라이애슬론 대신 철인 3종 경기로 알려져 있다. 트라이애슬론은 여러
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def calculate_triathlon_score(a, d, g):
score = a * ( d + g )
if a == ( d + g ):
score *= 2
return score
def get_max_score(score_list):
answer_score = 0
for score in score_list:
a, d, g = score[0], score[1], score[2]
triathlon_score = calculate_triathlon_score(
a=a, d=d, g=g
)
if answer_score < triathlon_score:
answer_score = triathlon_score
return answer_score
if __name__ == "__main__":
score_list = []
for _ in range(int(input())):
a, d, g = map(int, input().split())
score_list.append([a, d, g])
print(get_max_score(score_list=score_list))
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] 21598번 : SciComLove (Python) (0) | 2022.10.17 |
---|---|
[BaekJoon] 1284번 : 집 주소 (Python) (0) | 2022.10.16 |
[BaekJoon] 25784번 : Easy-to-Solve Expressions (Python) (0) | 2022.10.14 |
[BaekJoon] 11943번 : 파일 옮기기 (Python) (0) | 2022.10.13 |
[BaekJoon] 8871번 : Zadanie próbne 2 (Python) (0) | 2022.10.12 |