[D2] 스도쿠 검증 - 1974
성능 요약
메모리: 21,280 KB, 시간: 132 ms, 코드길이: 1,558 Bytes
제출 일자
2023-10-17 18:29
출처: 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();
int[][] map;
int SIZE = 9;
for(int tc = 1; tc <= T; tc++)
{
map = new int[SIZE][SIZE];
for(int i = 0; i < SIZE; i++){
for(int j = 0; j < SIZE; j++){
map[i][j] = sc.nextInt();
}
}
System.out.print("#"+tc +" ");
if(checkRowCol(map)&&checkSquare(map)){
System.out.println("1");
}else{
System.out.println("0");
}
}
}
private static boolean checkRowCol(int[][] map){
for(int i = 0; i < 9; i++){
int sumRow = 0;
int sumCol =0;
for(int j = 0; j < 9; j++){
sumRow += map[i][j];
sumCol += map[j][i];
}
if(sumRow != 45 || sumCol != 45){
return false;
}
}
return true;
}
private static boolean checkSquare(int[][] map){
for(int i = 0; i < 9; i+= 3){
for(int j = 0; j < 9 ; j += 3){
int sum = 0;
for(int x = 0; x < 3; x++){
for(int y = 0 ; y < 3; y++){
sum += map[i+x][j+y];
}
}
if(sum != 45){
return false;
}
}
}
return true;
}
}
'알고리즘 - SWEA > D2' 카테고리의 다른 글
[SW expert Academy] SWEA 1966번 숫자를 정렬하자 자바(Java) (1) | 2023.10.17 |
---|---|
[SW expert Academy] SWEA 1970번 쉬운 거스름돈 자바(Java) (1) | 2023.10.17 |
[SW expert Academy] SWEA 1976번 시각 덧셈 자바(Java) (0) | 2023.10.17 |
[SW expert Academy] SWEA 1979번 어디에 단어가 들어갈 수 있을까 자바(Java) (0) | 2023.10.17 |
[SW expert Academy] SWEA 1983번 조교의 성적 매기기 자바(Java) (1) | 2023.10.16 |