정수를 저장하는 스택을 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.
명령은 총 다섯 가지이다.
첫째 줄에 명령의 수 N이 주어진다. (1 ≤ N ≤ 1,000,000)
둘째 줄부터 N개 줄에 명령이 하나씩 주어진다.
출력을 요구하는 명령은 하나 이상 주어진다.
9
4
1 3
1 5
3
2
5
2
2
5
출력을 요구하는 명령이 주어질 때마다 명령의 결과를 한 줄에 하나씩 출력한다.
1
2
5
3
3
-1
-1
import java.util.*;
public class Main {
public static void main(String[] args) {
Stack<Integer> s = new Stack<>();
StringBuffer sb = new StringBuffer();
Scanner in = new Scanner(System.in);
int N = in.nextInt();
for (int i = 0; i < N; i++) {
switch (in.nextInt()) {
case 1:
s.push(in.nextInt());
break;
case 2:
if(s.empty()) sb.append("-1").append("\n");
else sb.append(s.pop()).append("\n");
break;
case 3:
sb.append(s.size()).append("\n");
break;
case 4:
if(s.empty()) sb.append("1").append("\n");
else sb.append("0").append("\n");
break;
case 5:
if(s.empty()) sb.append("-1").append("\n");
else sb.append(s.peek()).append("\n");
break;
}
}
System.out.println(sb);
}
}