백준[JAVA] 9251.LCS - 자바


백준[JAVA] 9251.LCS - 자바

문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { static char c1[]; static char c2[]; static int dp[][]; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); c1 = br.readLine().toCharArray(); c2 = br.readLine().toCharArray(); // express empty s..


원문링크 : 백준[JAVA] 9251.LCS - 자바