import java.util.*;
public class Baekjoon10809 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
char[] alphabet = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
int[] count = new int[26];
String s = sc.nextLine();
for(int i=0; i<count.length; i++) {
count[i]=-1;
}
for(int i=0; i<s.length(); i++) {
for(int j=0; j<alphabet.length; j++) {
if(s.charAt(i)==alphabet[j])
if(count[j]==-1)
count[j] = i;
else if(count[j]!=-1)
continue;
}
}
for(int i=0; i<count.length; i++) {
System.out.print(count[i] + " ");
}
sc.close();
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준 2864번 ː 자바(JAVA)] 5와 6의 차이 (0) | 2020.07.17 |
---|---|
[백준 2675번 ː 자바(JAVA)] 문자열 반복 (0) | 2020.07.14 |
[백준 2444번 ː 자바(JAVA)] 별 찍기 7 (0) | 2020.07.14 |
[백준 5565번 ː 자바(JAVA)] 영수증 (0) | 2020.07.09 |
[백준 5597번 ː 자바(JAVA)] 과제 안 내신 분...? (2) | 2020.07.09 |