[BOJ] 2675번 문자열 반복 (C++)

Minju Kim·2023년 9월 30일
0
post-thumbnail
post-custom-banner

2675번 링크

2675번 문제

맞았습니다!

코드

#include <iostream>
#include <vector>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cout.tie(NULL);
    cin.tie(NULL);
    
    int t;
    cin >> t;

    vector<string>list(t);
    vector<string>str(t);

    for (int i = 0; i < t; i++) {
        int r;
        cin >> r >> list[i];
        for (int j = 0; j < list[i].size(); j++) {
            str[i].append(r, list[i].at(j));
        }
    }

    for (int i = 0; i < t; i++) {
        cout << str[i] << endl;
    }
    
    return 0;

}
profile
이화여자대학교 컴퓨터공학과 22 / 백엔드 개발자(가 되고싶음) / Spring Boot, Flutter, Python, Java, Data structure, etc
post-custom-banner

0개의 댓글