boj 2493 탑
-
boj)2493 - 탑PS/boj 2020. 10. 12. 13:02
import java.io.*; import java.util.*; public class boj_2493 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static Stack waiting = new Stack(); static Stack pending = new Stack(); static StringTokenizer st; public static void main(String[] args) throws IOException { int n = Integ..