문제링크
https://www.acmicpc.net/problem/2675
나의코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
for(int i = 0; i < n; i++){
String[] str = br.readLine().split(" ");
int num = Integer.parseInt(str[0]);
String word = str[1];
for(int j = 0; j < word.length(); j++){
for(int k = 0; k < num; k++){
System.out.print(word.charAt(j));
}
}
System.out.println();
}
}
}
'Baekjoon Online Judge' 카테고리의 다른 글
[BOJ] 백준 5622번: 다이얼 (Java) (0) | 2023.03.22 |
---|---|
[BOJ] 백준 1152번: 단어의 개수 (Java) (0) | 2023.03.21 |
[BOJ] 백준 1157번: 단어 공부 (Java) (0) | 2023.03.19 |
[BOJ] 백준 10809번: 알파벳 찾기 (Java) (0) | 2023.03.18 |
[BOJ] 백준 11720번: 숫자의 합 (Java) (0) | 2023.03.17 |
댓글