이 문제에 대한 접근은 다음과 같습니다. 

1. 공백 또는 , 으로 자릅니다.

2. 처음에 위치한 덩어리는 default 이므로 두고

3. 그 뒤에 문자인 경우와 특수문자 인경우를 잘 둬서 처리해주면 됩니다.

4. 문자는 reverse 했고, 특수문자는 default 덩어리에 append 했습니다.

 

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package backjun;
 
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Scanner;
 
public class backjun_3568_iSharp {
 
    public static void main(String[] args) throws Exception{
        // TODO Auto-generated method stub
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        
        char[] astr = str.toCharArray();
    
        
        String temp = "";
        ArrayList<String> al = new ArrayList<>();
        for(char s : astr) {
            if(s == ' ' || s == ',' || s ==';') {
                if(temp.length()>0)
                    al.add(temp); //0보다 작으면 의미 없음
                    
                temp ="";
            }else {
                temp += s;
            }
        }
        
        
        
        
        
        for(int i=1; i<al.size(); i++) {
            String init = al.get(0); 
            ArrayList<Character> ac = new ArrayList<>();
            char[] s = al.get(i).toCharArray();
            
            if(s.length>0) {
            for(int j=s.length-1; j>=0; j--) {
                
                if((s[j]>='a' && s[j] <='z'|| (s[j]>='A' && s[j] <='Z')) {
                    //continue;
                    ac.add(s[j]);
                }
                else {
                
                    if(s[j]=='['
                        init+=']';
                    else if(s[j] ==']')
                        init+='[';
                    else
                        init+=s[j];
                    
                }
                
            }
            
            String b = "";
            for(int z = ac.size()-1; z>=0; z--) {
                b+=ac.get(z);
            }
            
            init+=" ";
            init+=b;
            System.out.println(init+";");
        }
        }
    
    }
 
}
 
 
cs