Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- Stack
- Binary Search
- 코테
- 구현
- two pointers
- Data Structure
- Tree
- greedy
- hash table
- simulation
- sorting
- SQL
- 파이썬
- Class
- implement
- Counting
- Math
- Binary Tree
- array
- geometry
- bit manipulation
- 자바
- dynamic programming
- Number Theory
- Matrix
- 코딩테스트
- string
- Method
- database
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 2941. 크로아티아 알파벳 본문
1. 입력
- 첫째 줄에 최대 100글자의 단어가 주어진다. 알파벳 소문자와 '-', '='로만 이루어져 있다.
- 단어는 크로아티아 알파벳으로 이루어져 있다. 표에 나와있는 알파벳은 변경된 형태로 입력된다. 표에 없는 알파벳은 한 글자씩 센다.
2. 출력
- 입력으로 주어진 단어가 몇 개의 크로아티아 알파벳으로 이루어져 있는지 출력한다.
3. 코드
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String word = br.readLine();
String[] alpha = {"dz=", "z=", "c=", "s=", "c-", "d-", "lj", "nj"};
int answer = 0;
for(String s : alpha){
int i = word.indexOf(s);
while(i!=-1){
answer++;
String p = "";
for(int n=0 ; n<s.length() ; n++)
p += " ";
word = word.substring(0,i) + p + word.substring(i+s.length());
i = word.indexOf(s);
}
}
System.out.print(answer + word.replaceAll(" ","").length());
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 7785. 회사에 있는 사람 (0) | 2023.04.18 |
---|---|
[백준 온라인 저지] 25206. 너의 평점은 (0) | 2023.04.17 |
[LeetCode/Easy] 1748. Sum of Unique Elements (0) | 2023.04.17 |
[LeetCode/Easy] 1736. Latest Time by Replacing Hidden Digits (0) | 2023.04.17 |
[LeetCode/Easy] 1694. Reformat Phone Number (0) | 2023.04.16 |