Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- posting
- Android
- 일본어기초
- 일본어문법
- PR
- Kotlin
- androidstudio
- suspend
- github
- ai
- 안드로이드
- 책리뷰
- rxjava
- KotlinInAction
- jlpt
- coroutine
- 학습지
- webflux
- 인공지능
- errorhandling
- blog
- pullrequest
- CustomTab
- 진짜학습지
- 책추천
- 진짜학습지후기
- n3문법
- 코틀린
- 진짜일본어
- GIT
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 본문
반응형
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809
HINT: vector에서 해당 인덱스의 요소를 수정하는 것은 add가 아니라 set이다. 뭐...절대 내가 헷갈리고 삽질해서 알려주는건 아니다.
import java.util.Scanner;
import java.util.Vector;
public class baekjoon_10809 {
public static void main(String[] argc) {
Scanner scanner = new Scanner(System.in);
String input_word = scanner.nextLine();
Vector<Integer> word_check = new Vector<>();
for(int count = 0; count<26; count++) word_check.add(-1);
for(int word_location = 0; word_location < input_word.length(); word_location++) {
int tmp_check_location = (int)input_word.charAt(word_location)-97;
if(word_check.elementAt(tmp_check_location)==-1) word_check.set(tmp_check_location,word_location);
}
for(int vector_count = 0; vector_count < word_check.size(); vector_count++) System.out.print(word_check.elementAt(vector_count)+" ");
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 단어공부_1157 (0) | 2019.01.15 |
---|---|
BaekJoon/BOJ [JAVA] 문자열 반복_2675 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 평균 점수_10039 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] OX 퀴즈_8958 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 단어의 개수_1152 (0) | 2019.01.03 |
Comments