728x90
반응형
최대값 찾기 문제이다.
max_s = max_i = 0
for i in range(5):
s = sum(map(int, input().split()))
if s > max_s:
max_s = s
max_i = i+1
print(max_i, max_s)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2975번 Transactions(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 2959번 거북이(python) (0) | 2021.02.12 |
백준 알고리즘 2935번 소음(python) (0) | 2021.02.12 |
백준 알고리즘 2875번 대회 or 인턴(python) (0) | 2021.02.12 |
백준 알고리즘 2783번 삼각 김밥(python) (0) | 2021.02.12 |