Какое именно условие задачи я не выполнил?
package com.javarush.task.pro.task05.task0511;
import java.util.Scanner;
/*
Создаем двухмерный массив
*/
public class Solution {
public static int[][] multiArray;
public static void main(String[] args) {
//напишите тут ваш код
Scanner scan = new Scanner(System.in);
int N = scan.nextInt();
int[][] multiArray = new int[N][];
if(N > 0){
for(int i = 0; i < N; i++){
int next = scan.nextInt();
if(next > 0)
multiArray[i] = new int[next];
}
}
}
}