티스토리 뷰

import java.util.Scanner;

public class Crop {

	public static void main(String[] args) throws Exception{
		
		Scanner sc = new Scanner(System.in);
        int tc = sc.nextInt();  //테스트케이스
        
        
        for(int t = 1; t <= tc; t++) {
            int n = sc.nextInt(); //n받기
            int arr[][] = new int[n][n];
            int sum = 0;
            for(int i =0; i < n; i++) {
            	String str = sc.next();
            	for(int j = 0; j < n; j++) {
            		arr[i][j] = str.charAt(j)-'0'; 
            		//문자 타입이기때문에 숫자로 바꿔주기 위해서는 '0'을빼줘야한다
            	}
            }//배열 받기
            
            
	        for(int i = 0; i <= n/2; i++) {
	        	for(int j = n/2 - i; j <= n/2 + i; j++) {
	        		sum += arr[i][j];
	        		
	        	}
	        	
	        }//상단 삼각형(중간부까지)
	        int a = 1;
	        for(int i = n/2 +1 ; i < n; i++) {
	        	for(int j = a; j <= n-1-a; j++) {
	        		sum += arr[i][j];
	        	}
	        	a++;
	        }//하단 삼각형
        System.out.println("#" + t +" "+ sum);
        }

	}

}

'알고리즘 > SWEA' 카테고리의 다른 글

[SWEA] 1209. Sum  (0) 2021.02.15
[SWEA] 5789.현주의 상자 바꾸기  (0) 2021.02.13
[SWEA] 1208. Flatten  (0) 2021.02.10
[SWEA] 1206. View  (0) 2021.02.10
[SWEA] 4834.숫자카드  (0) 2021.02.10
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함