List<List<Integer>> result = new ArrayList<>();
int [][] dic= new int[result.size()][];
for(int i = 0; i < result.size(); i++){
dic[i] = new int[result.get(i).size()];
for(int j = 0; j < dic[i].length; j++)
dic[i][j] = result.get(i).get(j);
}
04-06
1313
05-26
370
04-24
166