[JAVA] SWEA 5356 - 의석이의 세로로 말해요

hyng·2022년 2월 11일
0

SWEA

목록 보기
30/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        int T = Integer.parseInt(sc.nextLine());
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            int len = 0;
            String arr[][] = new String[5][15];
            for(int i=0; i<5; i++){
                String input[] = sc.nextLine().split("");
                len = Math.max(len, input.length);
                for(int j=0; j<input.length; j++){
                    arr[i][j] = input[j];
                }
            }

            for(int i=0; i<len; i++){
                StringBuffer word = new StringBuffer();
                for(int j=0; j<5; j++){
                    if(arr[j][i] != null){
                        word.append(arr[j][i]);
                    }
                }
                sb.append(word);
            }
            sb.append("\n");

        }
        System.out.println(sb);

    }

}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글