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
- coroutine
- 책리뷰
- 책추천
- jlpt
- androidstudio
- Android
- errorhandling
- KotlinInAction
- blog
- GIT
- 진짜학습지
- PR
- 코틀린
- suspend
- 학습지
- 인공지능
- 진짜일본어
- github
- webflux
- 일본어문법
- posting
- n3문법
- ai
- Kotlin
- 일본어기초
- pullrequest
- rxjava
- 진짜학습지후기
- CustomTab
- 안드로이드
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 단어공부_1157 본문
반응형
BaekJoon/BOJ [JAVA] 단어공부_1157
HINT: 백준은 잘못이 없습니다. 제 머리탓이지요... max를 초반만 구하고 break 해 버리는 멍청한 짓을 한건 안비밀
추가 예시: aasdjhfgjkjkjghubg -> j
import java.util.Scanner;
import java.util.Vector;
public class baekjoon_1157 {
public static void main (String[] argc) {
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine().toUpperCase();
Vector<Integer> alpha = new Vector<>();
for(int i=0;i<26;i++) alpha.add(0);
for(int i=0;i<input.length();i++) {
alpha.set((int)input.charAt(i)-65,alpha.elementAt((input.charAt(i)-65))+1);
}
int max=0,maxcount=0;
for(int i=0;i<26;i++) {
int tmp_i = alpha.elementAt(i);
if(tmp_i>max && tmp_i!=0) {max = tmp_i; maxcount=0;}
else if(max==tmp_i && tmp_i!=0) { maxcount++; }
}
if(maxcount!=0||input.length()==0) System.out.println("?");
else System.out.println((char)(alpha.indexOf(max)+65));
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 상수_2908 (0) | 2019.01.19 |
---|---|
BaekJoon/BOJ [JAVA] 그룹 단어 체커_1316 (0) | 2019.01.15 |
BaekJoon/BOJ [JAVA] 문자열 반복_2675 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 평균 점수_10039 (0) | 2019.01.06 |
Comments