https://st-lab.tistory.com/121 문제 풀이 import java.io.*; import java.util.*; public class Main { static int[] num; static int[] op; static int max = Integer.MIN_VALUE; static int min = Integer.MAX_VALUE; static int n; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; n = Integer.parseInt(br.read..