Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Class
- Tree
- Matrix
- Stack
- hash table
- implement
- java
- SQL
- dynamic programming
- 파이썬
- 코딩테스트
- geometry
- Math
- Method
- Binary Search
- two pointers
- 코테
- 구현
- Counting
- sorting
- database
- array
- greedy
- Data Structure
- simulation
- string
- bit manipulation
- 자바
- Binary Tree
- Number Theory
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 1157. 단어 공부 본문
- 입력: 첫째 줄에 알파벳 대소문자로 이루어진 단어가 주어진다. 주어지는 단어의 길이는 1,000,000을 넘지 않는다.
- 출력: 첫째 줄에 이 단어에서 가장 많이 사용된 알파벳을 대문자로 출력한다. 단, 가장 많이 사용된 알파벳이 여러 개 존재하는 경우에는 ?를 출력한다.
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
char[] input = br.readLine().toUpperCase().toCharArray();
int[] count = new int[26];
int max = 0, index = -1;
for(char c : input)
count[c-65]++;
for(int i=0 ; i<26 ; i++){
if(count[i]>max){
max = count[i]; index = i;
}
}
String answer = String.valueOf((char)(index+65));
for(int i=0 ; i<26 ; i++){
if(count[i]==max && index!=i){
answer = "?"; break;
}
}
System.out.println(answer);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 2908. 상수 (0) | 2023.03.07 |
---|---|
[백준 온라인 저지] 1152. 단어의 개수 (0) | 2023.03.07 |
[백준 온라인 저지] 2675. 문자열 반복 (0) | 2023.03.07 |
[백준 온라인 저지] 10809. 알파벳 찾기 (0) | 2023.03.07 |
[백준 온라인 저지] 11720. 숫자의 합 (0) | 2023.03.07 |