阿里笔试3.25号题目,没参加这一场,试着写了下,测试了一个用例,通过了,不知道能不能AC import java.util.Scanner; public class Main3 { public static void main(String [] args){ Scanner reader = new Scanner(System.in); int n = reader.nextInt(); reader.nextLine(); int [][] array = new int[3][n]; for(...