728x90
StringBuilder replace로 하려고 했는데 함수가 없음
String.replace로 해결
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
|
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
class Solution {
private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
private static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
public static void main(String[] args) throws IOException {
int T = Integer.parseInt(br.readLine());
for(int i=0; i<T; i++) {
String input = br.readLine();
String[] array = input.split(" ");
array[0] = array[0].replace(array[1], " ");
System.out.println("#"+(i+1)+" "+array[0].length());
}
}
}
|
cs |
'알고리즘 풀이 > SWEA' 카테고리의 다른 글
[SWEA][JAVA] 2025. N줄덧셈 (0) | 2021.06.14 |
---|---|
[SWEA][JAVA] 2027. 대각선 출력하기 (0) | 2021.06.14 |
[SWEA][JAVA] 2029. 몫과 나머지 출력하기 (0) | 2021.06.14 |
[SWEA][JAVA] 2043. 서랍의 비밀번호 (0) | 2021.06.13 |
[SWEA][JAVA] 2046. 스탬프 찍기 (0) | 2021.06.13 |