import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Map<Integer, Integer> m = new HashMap<>(); for (int i = 1; i <= n; i++) { m.put(i, sc.nextInt()); } List<Integer> result = new ArrayList&...