1. BOJ 11399 ATM 실버 3 https://www.acmicpc.net/problem/11399 코드 1 2 3 4 5 6 7 8 import sys input = sys.stdin.readline N = int(input()) arr = list(map(int, input().split())) arr.sort() for i in range(1, N): arr[i] += arr[i-1] print(sum(arr)) cs 설명 오름차순으로 정렬 후 누적합의 합을 구해서 풀 수 있었다. 2. BOJ 11726 2xn타일링 실버 3, DP https://www.acmicpc.net/problem/11726 코드 1 2 3 4 5 6 7 N = int(input()) dp = [0 for _ in r..