Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 14584] 암호 해독 본문
반응형
매 케이스마다 주어진 문자열을 한칸씩 밀어주면서 사전의 단어를 포함하는지 확인하면 된다.
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String cipher = sc.next();
int n = sc.nextInt();
String s[] = new String[n];
for(int i=0; i<n; i++)
s[i] = sc.next();
for(int i=0; i<26; i++) {
String temp = "";
for(int j=0; j<cipher.length(); j++)
temp += (char)((cipher.charAt(j) - 'a' + i) % 26 + 'a');
for(int j=0; j<n; j++) {
if(temp.contains(s[j])) {
System.out.println(temp);
return;
}
}
}
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 16676] 근우의 다이어리 꾸미기 (0) | 2019.07.20 |
---|---|
[백준 14585] 사수빈탕 (0) | 2019.07.17 |
[백준 14582] 오늘도 졌다 (0) | 2019.07.17 |
[백준 11947] 이런 반전이 (0) | 2019.07.17 |
[백준 11946] ACM-ICPC (0) | 2019.07.17 |
Comments