목록이동하기 (1)
hara
BEAKJOON JAVA ALGORITHM #11048(이동하기)
https://www.acmicpc.net/problem/11048 import java.util.Scanner; public class a11048 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int[][] arr = new int[a+1][b+1]; for(int i=1; i
공부/알고리즘
2017. 8. 23. 15:01