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
- PR
- coroutine
- 코틀린
- GIT
- Kotlin
- ai
- errorhandling
- jlpt
- 일본어기초
- androidstudio
- 책추천
- n3문법
- KotlinInAction
- github
- 진짜일본어
- posting
- 진짜학습지
- suspend
- 인공지능
- 진짜학습지후기
- 안드로이드
- pullrequest
- Android
- 학습지
- 책리뷰
- blog
- rxjava
- 일본어문법
- CustomTab
- webflux
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 그룹 단어 체커_1316 본문
반응형
BaekJoon/BOJ [JAVA] 그룹 단어 체커_1316
HINT: 배열 초기값이 0인거랑 index 0 이랑 겹쳐서 이상한짓 하고있었다.... 그래서 차피 알파벳이니까 -1로 초기화 했다.
import java.util.Scanner;
public class baekjoon_1316 {
public static void main(String[] argc) {
Scanner scanner = new Scanner(System.in);
int iter = Integer.parseInt(scanner.nextLine());
int count=0;
while(iter-->0){
String input = scanner.nextLine();
int alpha[] = new int[26];
for(int i=0;i<26;i++) alpha[i] = -1;
boolean figure = true;
for(int i=0;i<input.length();i++) {
int location = (int)input.charAt(i)-97;
if(alpha[location] == -1 ) alpha[location] = i;
else {
if((i-alpha[location])==1) { alpha[location] = i; }
else figure = false;
}
}
if(figure) count++;
}
System.out.println(count);
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 크로아티아 알파벳_2941 (0) | 2019.01.19 |
---|---|
BaekJoon/BOJ [JAVA] 상수_2908 (0) | 2019.01.19 |
BaekJoon/BOJ [JAVA] 단어공부_1157 (0) | 2019.01.15 |
BaekJoon/BOJ [JAVA] 문자열 반복_2675 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 (0) | 2019.01.06 |
Comments