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 33 |
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No03 {
public static void main(String[] args) throws IOException {
int[] alpha = new int[26];
for(int i = 0; i < alpha.length;i++) {
alpha[i] = -1;
}
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine();
for(int i = 0; i < str.length(); i++) { char ch = str.charAt(i);
if(alpha[ch -'a'] == -1) {
alpha[ch -'a'] = i;
}
}
for(int i : alpha) {
System.out.print(i + " ");
}
} //main
} //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1157) (0) | 2021.06.02 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2675) (0) | 2021.06.01 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11720) (0) | 2021.05.31 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11654) (0) | 2021.05.30 |
JAVA. 백준 알고리즘 단계별 문제 - 6단계(문제 번호 1065) (0) | 2021.05.29 |