반응형 64852 [파이썬] [SWEA] 1959. 두 개의 숫자열 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 = in.. 2021. 2. 20. [파이썬] [SWEA] 6485. 삼성시의 버스 노선 swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWczm7QaACgDFAWn SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 1. normal T = int(input()) for tc in range(1, T+1): N = int(input()) # 버스의 수 bus_stop = [0] * (5001) for i in range(N): A, B = map(int, input().split()) # 해당 정류장에 지나는 버스의 대수 누적 for j in range(A, B+1): bus_stop[j] += 1 P = int(input(.. 2021. 2. 20. 이전 1 다음 반응형