728x90
반응형
https://www.acmicpc.net/problem/2675
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
sc.nextLine();
String[] result = new String[num];
for(int i=0; i<num; i++) {
String[] arr = sc.nextLine().split(" ");
int n = Integer.parseInt(arr[0]);
String tmp = "";
for(int j=0; j<arr[1].length(); j++) {
for(int k=0; k<n; k++) {
tmp += String.valueOf(arr[1]).charAt(j);
}
}
result[i] = tmp;
}
for(String str : result) {
System.out.println(str);
}
}
}
|
cs |
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 알고리즘 2908번: 상수 - JAVA (0) | 2024.04.27 |
---|---|
백준 알고리즘 1152번: 단어의 개수 - JAVA (0) | 2024.04.27 |
백준 알고리즘 9086번: 문자열 - JAVA (0) | 2024.04.27 |
백준 알고리즘 2743번: 단어 길이 재기 - JAVA (0) | 2024.04.27 |
백준 알고리즘 27866번: 문자와 문자열 - JAVA (0) | 2024.04.27 |