-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2675
More file actions
32 lines (24 loc) · 618 Bytes
/
2675
File metadata and controls
32 lines (24 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
int R;
String S;
for(int i=0; i<T; i++) {
R = sc.nextInt();
S = sc.next();
repeat(R,S);
}
sc.close();
}
public static void repeat(int r, String s) {
char[] before = s.toCharArray();
for(int i=0; i<s.length(); i++) {
for(int j=0; j<r; j++) {
System.out.print(before[i]);
}
}
System.out.println();
}
}