백준알고리즘 10828번 스택
백준알고리즘 https://www.acmicpc.net/problem/10828 백준알고리즘에서 Stack을 사용한 문제. 유의할 것은 스택에 값이 없는데 TOP 또는 POP을 했을 경우에 Exception이 발생하니, 조건을 태우면 된다.import java.util.Scanner; import java.util.Stack; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int count = Integer.parseInt(scan.nextLine().trim()); int[] resultArray = new int[count]; Stack stack = new Stack(..