-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB1918.java
More file actions
62 lines (48 loc) · 1.22 KB
/
B1918.java
File metadata and controls
62 lines (48 loc) · 1.22 KB
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
package Practice;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Stack;
public class B1918 { //ÈÄÀ§ Ç¥±â½Ä
static StringBuilder sb = new StringBuilder();
static Stack<Character> S = new Stack<>();
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
for(int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
if(c >= 'A' && c <= 'Z') sb.append(c);
else if(c == ')') solve();
else if(S.isEmpty() || c == '(') S.add(c);
else if(c == '*' || c == '/') {
while(!S.isEmpty()) {
char top = S.peek();
if(top == '(' || top == '+' || top == '-') break;
sb.append(S.pop());
}
S.add(c);
}
else {
while(!S.isEmpty()) {
char top = S.peek();
if(top == '(') break;
sb.append(S.pop());
}
S.add(c);
}
}
while(!S.isEmpty()) {
char top = S.pop();
if(top == '(') continue;
sb.append(top);
}
System.out.println(sb);
}
static void solve() {
while(!S.isEmpty()) {
char top = S.pop();
if(top == '(') break;
sb.append(top);
}
}
}