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 T = sc.nextInt();
for(int i = 0; i < T; i++) {
int R = sc.nextInt();
String S = sc.next();
for(int j = 0; j < S.length(); j++) {
for(int k = 0; k < R; k++) {
char P = S.charAt(j);
System.out.print(P);
}
}
}
sc.close();
}
}
*수정한 후
//수정 한 후
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int i = 0; i < T; i++) {
int R = sc.nextInt();
String S = sc.next();
for(int j = 0; j < S.length(); j++) {
for(int k = 0; k < R; k++) {
char P = S.charAt(j);
System.out.print(P);
}
}
System.out.println(); // 추가한 코드
}
sc.close();
}
}
[결과]
728x90
'백준(Baekjoon)' 카테고리의 다른 글
[백준/자바] 1546번: 평균 (0) | 2022.05.20 |
---|---|
[백준] 2908번: 상수 - 자바 (0) | 2022.05.19 |
[백준] 2577번: 숫자의 개수 - 자바 (0) | 2022.05.17 |
[백준] 10872번: 팩토리얼 - 자바 (0) | 2022.05.16 |
[백준] 2523번: 별 찍기 - 13 - 자바 (0) | 2022.05.13 |