[문제 링크] : https://www.acmicpc.net/problem/11944
#include <iostream>
using namespace std;
int main(){
string S;
int M;
cin >> S >> M;
int N = stoi(S);
string Ans = "";
for(int i=0; i<N; i++){
Ans += S;
}
if(Ans.size() > M){
cout << Ans.substr(0, M) << "\n";
}
else{
cout << Ans << "\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 9094 - 수학적 호기심 (C++) (0) | 2024.11.25 |
---|---|
[알고리즘] 백준 5613 - 계산기 프로그램 (C++) (0) | 2024.11.24 |
[알고리즘] 백준 2774 - 아름다운 수 (C++) (0) | 2024.11.22 |
[알고리즘] 백준 15232 - Rectangles (C++) (0) | 2024.11.21 |
[알고리즘] 백준 2863 - 이게 분수? (C++) (0) | 2024.11.20 |