Java Runtime Error

/ import java.util.;
class Intest
{
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int k = sc.nextInt();
int count=0;
for(int i=0;i<=n;i++){
int ti = sc.nextInt();
if (ti%k==0){
count++;
}
}
System.out.println(count);
}
}

Please tell me what is the error in this code.

Hey, please mention the specific problem for which this code is for, or the particular case where the runtime error is caused as these errors are heavily dependent on the input data.

Also it would be better if you give the link to your submission as it would help me understand your code better.