https://www.acmicpc.net/problem/2675
Scanner를 사용한 코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.nextLine(); //버퍼비우기
for (int i = 0; i < n; i++) {
String[] arr = sc.nextLine().split(" ");
int cnt = Integer.parseInt(arr[0]);
String[] arr2=arr[1].split("");
for (int j = 0; j < arr2.length; j++) {
for (int k = 0; k < cnt; k++) {
System.out.print(arr2[j]);
}
}
System.out.println();
}
}
}
BufferedReader를 사용한 방법
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
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[] arr = br.readLine().split(" "); //바로 띄어쓰기 기준 3과 abc를 각 arr[0] , arr[1] 에 넣음
int cnt = Integer.parseInt(arr[0]); //arr[0]을 숫자로 변환
String[] str = arr[1].split("");
for (int j = 0; j < str.length; j++) { //글자 개수를
for (int k = 0; k < cnt; k++) { //카운트만큼 돌림
System.out.print(str[j]);
}
}
System.out.println();
}
}
}
'💡 Algorithm > 백준' 카테고리의 다른 글
[JAVA] 백준 #2920 - 음계 (0) | 2023.10.17 |
---|---|
[JAVA] 백준 #11720 - 숫자의 합 (0) | 2020.08.21 |
[JAVA] 백준 #10809 - 알파벳 찾기 (0) | 2020.08.21 |
[JAVA ] 백준 #1157- 단어 공부 (0) | 2020.08.20 |
[JAVA ] 백준 #2839- 설탕 배달 (0) | 2020.08.20 |
[JAVA] 백준 #2741 - N 찍기 (Scanner,BufferedReader,BufferedWriter) (0) | 2020.06.24 |