//第一题 public static void main(String[] args) { int[]input= new int[]{1,1,1,2,3}; int k=2; Map<Integer,Integer> map=new HashMap<>(); for (int j : input) { map.put(j, map.getOrDefault(j, 0) + 1); } int min=Integer.MAX_VALUE; ...