https://www.acmicpc.net/problem/2156 아래는 내가 처음에 작성한 코드이다. 근데 틀렸다...import java.io.*;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int[] arr = new int[n + 1]; int[] dp = new int[n + 1]; int answer = 0; ..