백준 9465 java
-
boj)9465 - 스티커PS/boj 2020. 9. 19. 14:25
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class boj_9465 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st, st2; static int[][] dp; static int[][] val; static int t; public static void main(String[] args) throws IOException { t = Integer.parseInt(..