-
백준 2675번: 문자열 반복문자열(String) 2018. 7. 3. 10:19반응형
https://www.acmicpc.net/problem/2675
1. 문제
문자열의 길이 만큼 하나의 단어를 출력 하는 문제.
2. 알고리즘
키워드 - 구현
처음 알고리즘을 시작 할때는 부르트포스 문제로 생각 했는데 지금 와서 보니 단순 구현 문제다.
3. 코드
12345678910111213141516171819202122232425262728#include <iostream>#include <algorithm> // min#include <math.h>#include <string>#include <vector>using namespace std;int main() {int n; cin >> n;for (int i = 0; i < n; i++) {int cand = 0;string word;cin >> cand >> word;int size = word.size();for (int j = 0; j < size; j++) {for (int k = 0; k < cand; k++) {cout << word[j];}}printf("\n");}return 0;}cs 반응형'문자열(String)' 카테고리의 다른 글
백준 2957번: 창영이의 일기장 (0) 2018.07.19 백준 2902번: KMP는 왜 KMP일까? (0) 2018.07.03 백준 2857번: FBI (0) 2018.06.29 백준 9933번: 민균이의 비밀번호 (0) 2018.06.29 백준 2789번: 유학 금지 (0) 2018.06.29