SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
행,열,블록 검사를 통해서 숫자가 겹치지 않으면 1을 출력해준다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import java.util.Scanner;
import java.io.FileInputStream;
class Solution{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
int[][] board = new int[9][9];
for(int test_case = 1; test_case <= T; test_case++)
{
int flag=1;
//배열 입력
for(int i=0;i<9;i++)
for(int j=0;j<9;j++)
board[i][j]=sc.nextInt();
//행, 열 검사하기
for(int i=0;i<9;i++){
int col=0;
int row=0;
for(int j=0;j<9;j++){
row += board[i][j];
col += board[j][i];
}
if(row!=45 || col !=45){
flag=0;
break;
}
}
//flag가 0이면 블록 단위는 안봐도 패스
if(flag==0){
System.out.println("#" + test_case + " 0");
continue;
}
//블록 검사하기
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+=board[x][y];
if(sum!=45){
flag=0;
break;
}
}
if(flag==0) break;
}
System.out.println("#" + test_case + " "+flag);
}
}
}
|
cs |
'알고리즘 > 삼성 SW expert Academy' 카테고리의 다른 글
[SWEA] 1961. 숫자 배열 회전_JAVA (0) | 2022.05.07 |
---|---|
[SWEA] 1970. 쉬운 거스름돈_JAVA (0) | 2022.05.07 |
[SWEA] 1979. 어디에 단어가 들어갈 수 있을까_JAVA (0) | 2022.05.07 |
[SWEA] 1989. 초심자의 회문 검사_JAVA (0) | 2022.05.06 |
[SWEA] 2001. 파리 퇴치_JAVA (0) | 2022.05.06 |