1. 최종 위치가 아닌 움직인 좌표 중 제일 큰 값을 출력해야 한다.2. 가장 멀리 있으려면 ? 가 R 혹은 L 한가지로 통일되는 경우일 것이다.3. 따라서 ?가 모두 R인경우, 모두 L인 경우 두 가지 경우의 수를 구해서 비교 후 더 큰값을 출력한다. import java.util.Scanner;public class Swea24001RobotLanguage { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); sc.nextLine(); int[] answer = new int[t]; for(int tc = ..