#include <iostream>
#include <vector>
#define SIZE 9
#define FAST_IO() ios::sync_with_stdio(0); cin.tie(0);
#define x first
#define x second
using namespace std;
int main()
{
int n = 5;
vector<string> v(n);
while (n)
{
int idx = 5 - n;
cin >> v[idx];
n--;
}
for (int x = 0; x < 16; x++)
{
for (int y = 0; y < 5; y++)
{
if (v[y] == "")
continue;
char cur = v[y][x];
if (cur == '\0')
{
v[y] = "";
continue;
}
cout << cur;
}
}
return 0;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[실4] 9012 - 괄호 (0) | 2024.11.04 |
---|---|
[실4] 10773 - 제로 (0) | 2024.11.04 |
[브1] 14467 - 소가 길을 건너간 이유 1 (0) | 2024.11.04 |
[실4] 10866 - 덱 (함수포인터 이용) (0) | 2024.08.27 |
[브4] 13136 - Do Not Touch Anything (0) | 2024.07.17 |