Recent Posts
Notice
No Rules Rules
세로읽기 (feat. 백준, 10798번) 본문
728x90
반응형
세로읽기
https://www.acmicpc.net/problem/10798
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
string str[5];
for(register int i = 0; i < 5; ++i)
cin >> str[i];
for(register int i = 0, j; i < 15; ++i)
for(j = 0; j < 5; ++j)
if(i < str[j].size())
cout << str[j].at(i);
return 0;
}
// *&)*@*
반응형
문제에서 요구하는 방향으로 인덱스를 이동시키며 문자를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
공 (feat. 백준, 1547번) (0) | 2023.02.03 |
---|---|
가장 큰 금민수 (feat. 백준, 1526번) (0) | 2023.02.02 |
두 배열의 합 (feat. 백준, 2143번) (0) | 2023.02.01 |
이중 우선순위 큐 (feat. 백준, 7662번) (0) | 2023.01.31 |
나는 요리사다 (feat. 백준, 2953번) (0) | 2023.01.31 |
Comments