Notice
Recent Posts
Recent Comments
Link
목록배열돌리기 (1)
개발일지
백준 배열돌리기
import java.util.Scanner; public class Main_배열돌리기 { static int N, M, K, ans; static int[][] A; static int[][] order; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); M = sc.nextInt(); K = sc.nextInt(); A = new int[N + 2][M + 2]; ans = Integer.MAX_VALUE; order = new int[K][3]; for (int i = 1; i < N + 1; i++) { for (int j = 1; j < M + 1; j++) { A[i][j..
알고리즘
2019. 10. 21. 12:06