728x90
300x250
knuth morris pratt 라는 문자가 들어오면 KMP로 약어를 만들어주는 것
import java.io.*;
import java.util.*;
public class Solution {
public static int N;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
sc.nextLine();
for (int i = 0; i < N; i++) {
String str = sc.nextLine();
String ans = "";
//System.out.println(str);
String[] sp = str.split(" ");
for (int j = 0; j < sp.length; j++) {
ans += sp[j].charAt(0);
}
System.out.println("#"+(i+1)+" "+ans.toUpperCase());
}
}
}
728x90
'알고리즘 > 그 외' 카테고리의 다른 글
[JAVA] 알고리즘 달팽이 배열 - 직사각형 (0) | 2020.07.23 |
---|---|
SWEA - 1229. [S/W 문제해결 기본] 8일차 - 암호문2 (0) | 2020.05.15 |
SWEA - 7193. 승현이의 수학공부 (0) | 2020.03.29 |
백준 2167번: 2차원 배열의 합 (0) | 2020.03.14 |
SWEA - 8658. Summation (0) | 2020.03.14 |