문제
https://www.acmicpc.net/problem/2435
풀이
n,m = map(int,input().split())
arr = list(map(int,input().split()))
arr2 = []
sol = -101
for i in arr:
arr2.append(i)
if len(arr2) == m: # 리스트에 m일 온도가 있으면
sol = max(sol,sum(arr2)) # 최댓값 비교
arr2.pop(0)
print(sol)
리스트에 m개의 숫자를 넣고 최댓값을 비교해주었다.
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 백준 #2573 - 빙산 (0) | 2022.03.28 |
---|---|
[Python] 백준 #12931 - 두 배 더하기 (1) | 2022.03.28 |
[Python] 프로그래머스 - 괄호 회전하기 (0) | 2022.03.23 |
[Python] 백준 #2204 - 도비의 난독증 테스트 (2) | 2022.03.23 |
[Python] 백준 #1411 - 비슷한 단어 (0) | 2022.03.23 |