백준 알고리즘[DP] - 2xn 타일링
https://www.acmicpc.net/problem/11726 1234567891011121314151617181920import java.util.Scanner;import java.io.FileNotFoundException; class Main { public static void main(String args[]) throws FileNotFoundException{ //FileInputStream fi = new FileInputStream("C:\\Users\\SeonMi\\Desktop\\JavaTools\\Tools\\workspace\\Solution\\src\\input.txt"); //Scanner sc = new Scanner(fi); Scanner sc = new Scanne..