삐까냥의 파도타기

10809번) 알파벳 찾기 본문

코딩/백준 알고리즘

10809번) 알파벳 찾기

금손형아 2017. 11. 11. 14:19

문제 출처 : https://www.acmicpc.net/problem/10809


import java.util.Scanner;


public class Q10809 {


public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

String string = sc.nextLine();

int[] alphabet = new int[26];

for ( int i = 0; i < string.length(); i++ ) {

int temp = Integer.valueOf(string.charAt(i)) - 97;

if ( alphabet[temp] == 0 ) {

alphabet[temp] = i+1;

}

}

for ( int i = 0; i < 26; i++ ) {

System.out.print((alphabet[i]-1) + " ");

}

}

}


'코딩 > 백준 알고리즘' 카테고리의 다른 글

2908번) 상수  (0) 2017.11.11
1157번) 단어 공부  (0) 2017.11.11
11654번) 아스키 코드  (0) 2017.11.11
1152번) 단어의 개수  (0) 2017.11.11
14890번) 경사로  (0) 2017.10.29