Recent Posts
Notice
No Rules Rules
열 개씩 끊어 출력하기 (feat. 백준, 11721번) 본문
728x90
반응형
열 개씩 끊어 출력하기
https://www.acmicpc.net/problem/11721
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
string str;
cin >> str;
register int cnt = str.size() / 10, idx = 0;
for(register int i = 0; i <= cnt; ++i){
for(register int j = 0; j < 10 && idx < str.size(); ++j)
cout << str.at(idx++);
cout << "\n";
}
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
단어 뒤집기 2 (feat. 백준, 17413번) (0) | 2022.11.02 |
---|---|
차이를 최대로 (feat. 백준, 10819번) (0) | 2022.11.01 |
인공지능 시계 (feat. 백준, 2530번) (0) | 2022.11.01 |
하노이 탑 (feat. 백준, 1914번) (0) | 2022.11.01 |
장인은 도구를 탓하지 않는다 (feat. 백준, 25905번) (0) | 2022.10.31 |
Comments