主要思路:遍历所有的情况存入Set里进行重复性过滤,最后Set的大小就是结果 情况遍历:动态规划思想,进行遍历。 代码如下: import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num=sc.nextInt(); ArrayList<Integer> m=new ArrayList<>(); ArrayList<Integer> n=ne...