-
백준 2675 - 문자열 반복백준 algorithm 2020. 3. 26. 21:44반응형
#include <iostream> #include <string> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int N; cin >> N; string S; while(N>0) { int rep; cin >>rep; cin >> S; int len= S.length(); for(int i=0; i<len; i++) { for(int j=0; j< rep; ++j) { cout<<S[i]; } } cout <<'\n'; N--; } return 0; }
반응형'백준 algorithm' 카테고리의 다른 글
백준 11005 - 진법 변환 2 (0) 2020.04.01 백준 1157 - 단어공부 (0) 2020.03.29 백준 10809 - 알파벳 찾기 (0) 2020.03.26 백준 1373 - 2진수 8진수 (0) 2020.03.26 백준 17103 - 골드바흐 파티션 (0) 2020.03.26