We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner sc = new Scanner(System.in);
ArrayList<ArrayList<Integer>> arr = new ArrayList<ArrayList<Integer>>();
int n = sc.nextInt();
for (int i = 0; i < n; i++) {
int d = sc.nextInt();
arr.add(new ArrayList<Integer>());
for (int j = 0; j < d; j++) {
arr.get(i).add(sc.nextInt());
}
}
int q = sc.nextInt();
for (int i = 0; i < q; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
try{
if (arr.get(x - 1).get(y - 1) != null) {
System.out.println(arr.get(x - 1).get(y - 1));
} else {
System.out.println("ERROR!");
}
}
catch(Exception e){
System.out.println("ERROR!");
}
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Arraylist
You are viewing a single comment's thread. Return to all comments →
public static void main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */