풀이 : 이중 for문 j= i + 1로 해서 arr[i] * arr[j] 를 isIncreasing(단조 증가인지 확인) 함수 호출에 사용해서 단조 증가하는 수면 max 갱신 Code public class Solution { static int N; static int max; static int[] arr; static StringBuffer sb = new StringBuffer(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for (int tc = 1; tc (s.charAt(i + 1) - '0')) { //앞의 수가 더 크면 ..