X
1157번 단어공부
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
public class Main {
public static void main(String[] args) throws IOException {
int[] alphabet = new int[26];
Arrays.fill(alphabet, 0);
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine().toLowerCase();
char[] ch = str.toCharArray();
int len = ch.length;
int max = 0;
for (int i = 0; i < len; i++) {
int findIndex = ch[i] - 'a';
alphabet[findIndex]++;
if (max < alphabet[findIndex]) {
max = alphabet[findIndex];
}
}
String answer = "";
for(int i=0;i<26;i++) {
if(alphabet[i]==max) {
answer+=(char)('a'+i);
}
}
if(answer.length()>1) {
System.out.println("?");
}else if(answer.length()==1) {
System.out.println(answer.toUpperCase());
}
}
}
최근 글
같은 카테고리의 다른 글
- 9933번 민균이의 비밀번호
- 1764번 듣보잡
- 1475번 방 번호
- 1157번 단어공부
- 최소값과 최대값
- 구간 합 구하기
- 최소값
- 1181번 - 단어 정렬
- 11652번 - 카드
- 2169번 - 로봇 조종하기
- 2178번 - 미로 탐색
- 9084번 - 동전
- 2098번 - 외판원 순회
- 11049번 - 행렬 곱셉 순서
- 2302번 - 극장 좌석
- 1495번 - Day of Mourning
- 11060번 - 점프 점프
- 5557번 - 1학년
- 1697번 - 숨바꼭질
- 2631번 - 줄세우기
- 11004번 - K번째 수
- 9507번 - Generations of Tribbles
- 1904번 - 01타일
- 10942번 - 팰린드롬
- 10164번 - 격자상의 경로
- 2011번 - 암호코드
- 11066번 - 파일합치기
- 11054번 - 가장 긴 바이토닉 수열
- 11724번 - 연결 요소 개수
- 11403번 - 경로찾기
- 2667번 - 단지번호붙이기
- 3187번 - 양치기 꿍
- 2225번 - 합분해
- 1965번 - 상자넣기
- 1937번 - 욕심쟁이 판다
- 1890번 - 점프
- 1520번 - 내리막길