[D2] 파리 퇴치 - 2001
성능 요약
메모리: 24,048 KB, 시간: 153 ms, 코드길이: 1,016 Bytes
제출 일자
2023-10-16 10:11
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
완전 탐색
import java.util.*;
import java.io.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
int n = sc.nextInt();
int m = sc.nextInt();
int[][] board = new int[n][n];
for(int i =0; i < n; i++){
for(int j = 0; j < n ;j++){
board[i][j] = sc.nextInt();
}
}
int max = 0;
for(int i = 0 ; i < n - m + 1; i++){
for(int j = 0; j < n - m + 1; j++){
int tmp = 0;
for(int x = 0; x < m; x++){
for(int y = 0 ; y < m; y++){
tmp += board[i + x][j + y];
}
}
max = Math.max(max,tmp);
}
}
System.out.printf("#%d %d\n",tc,max);
}
}
}
'알고리즘 - SWEA > D2' 카테고리의 다른 글
[SW expert Academy] SWEA 1986번 지그재그 숫자 자바(Java) (0) | 2023.10.16 |
---|---|
[SW expert Academy] SWEA 1989번 초심자의 회문 검사 자바(Java) (0) | 2023.10.16 |
[SW expert Academy] SWEA 2007번 패턴 마디의 길이 자바(Java) (0) | 2023.10.16 |
[SW expert Academy] SWEA 2005번 파스칼의 삼각형 자바(Java) (0) | 2023.10.16 |
[SW expert Academy] SWEA 1926번 간단한 369게임 자바(Java) (0) | 2023.10.16 |