알고리즘/SWEA
[파이썬] [SWEA] 1959. 두 개의 숫자열
SBOX Learning by doing
2021. 2. 20. 16:14
반응형
swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PpoFaAS4DFAUq
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
1. normal
def check(long, short):
max_value = -987654321
for i in range(len(long)-len(short)+1):
result = 0
for j in range(len(short)):
result += long[i+j] * short[j]
if max_value < result:
max_value = result
return max_value
T = int(input())
for tc in range(1, T+1):
# N, M 리스트의 길이를 의미한다. 3 ~ 20
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
if N > M:
ans = check(A, B)
else:
ans = check(B, A)
print("#{} {}".format(tc, ans))
반응형