백준알고리즘 1463번 1로만들기
백준알고리즘 https://www.acmicpc.net/problem/1463 Top-down 방식이 아닌 bottom-up 방식으로 코딩했다. package test11; import java.util.Scanner; public class Test { public static int[] memoArray; public static int count; public static void main(String[] args) { Scanner scan = new Scanner(System.in); count = Integer.parseInt(scan.nextLine().trim()); memoArray = new int[count + 1]; for(int i = 0; i