DP 문제이다. 언제나 어렵고 새롭고 가장 싫어하는 알고리즘이다. # 실버1 -> DPimport sysinput = sys.stdin.readline# 테스트 케이스 개수T = int(input())for _ in range(T): N = int(input()) # 스티커 길이 sticker = [] sticker.append(list(map(int, input().split()))) sticker.append(list(map(int, input().split()))) if N == 1: print(max(sticker[0][0], sticker[1][0])) continue dp = [[0] * (N + 1) for _ in range(3)] ..