250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- readingbook
- 코테
- 알고리즘 문제
- English
- 코테 대비
- 완전탐색
- 원서읽기
- 쉬운 알고리즘 문제
- 직무면접
- dfs
- MySQL
- sw expert
- STUDYENGLISH
- 원서읽자
- D4
- nightroutine
- the midnight library
- 프로그래머스
- swexpertacademy
- 원서
- 코딩테스트
- 알고리즘
- BFS
- PyQt
- englishbook
- SQL
- sw expert academy
- 삼성
- 코테 준비
Archives
- Today
- Total
시나브로
[D3] 5356. 의석이의 세로로 말해요 본문
728x90
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main(void) {
int test_case = 0;
scanf("%d", &test_case);
for (int i = 0; i < test_case; i++) {
char words[5][16] = { 0 };
for (int j = 0; j < 5; j++) {
scanf("%s", &words[j]);
}
printf("#%d ", i + 1);
for (int n = 0;n<16; n++) {
for (int m = 0; m < 5; m++) {
if (words[m][n] == '\0')
continue;
printf("%c", words[m][n]);
}
}
printf("\n");
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D5] 1256. [S/W 문제해결 응용] 6일차 - K번째 접미어 (0) | 2019.10.06 |
---|---|
[D4] 5432. 쇠막대기 자르기 (0) | 2019.10.06 |
[D3] 5431. 민석이의 과제 체크하기 (0) | 2019.10.06 |
[D3] 7087. 문제 제목 붙이기 (0) | 2019.10.06 |
[D4] 6719. 성수의 프로그래밍 강좌 시청 (0) | 2019.10.06 |
Comments