1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class No06_2 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
System.out.println(st.countTokens());
} //main
} //End class
|
cs |
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.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No04_2 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for(int i = 0; i < T; i++) {
String[] str = br.readLine().split(" ");
int n = Integer.parseInt(str[0]);
String s = str[1];
for(int j = 0; j < s.length(); j++) {
for(int k = 0; k < n; k++) {
System.out.print(s.charAt(j));
}
}
System.out.println();
} //for
} //main
} //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1152) (0) | 2021.06.03 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1157) (0) | 2021.06.02 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 10809) (0) | 2021.06.01 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11720) (0) | 2021.05.31 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11654) (0) | 2021.05.30 |