백준 14888번 연산자 끼워넣기 (삼성 SW역량테스트 기출)https://www.acmicpc.net/problem/14888 import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { static int N; static int[] a; static int[] operator = new int[4]; static int maxValue = Integer.MIN_VALUE; static int minValue = Integer.MAX_VALUE; public static void main(String[] args) throws Exception{ Bu..