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