반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
주어진 공식대로 가장 높은 점수를 계산하는 문제입니다.
3. 코드
import sys
input = sys.stdin.readline
# 입력
n = int(input())
res = 0 # 가장 높은 점수
for _ in range(n):
a, d, g = map(int, input().split())
score = a * (d+g)
if a == d+g:
score *= 2
if res < score:
res = score
# 출력
print(res)
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 25576 찾았다 악질 - 파이썬(Python) (0) | 2023.03.11 |
---|---|
[구현/수학] 백준 13698 Hawk eyes - 파이썬(Python) (0) | 2023.03.10 |
[구현/수학] 백준 25625 샤틀버스 - 파이썬(Python) (0) | 2023.03.08 |
[구현/수학] 백준 22938 백발백준하는 명사수 - 파이썬(Python) (0) | 2023.03.07 |
[구현/수학] 백준 2975 Transations - 파이썬(Python) (0) | 2023.03.06 |
댓글