Help me in solving PRACTICEPERF problem

My issue

My code

/* package codechef; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;

/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int count=0;
		int[]  arr = new int[10];   // declaration of an Integer Array
		for(int i=0;i<arr.length;i++)
		 {
		     if(arr[i]>=10)
		      {
		          count++;
		          System.out.println(count);
		      }
		 }
		
	}
}

Problem Link: PRACTICEPERF Problem - CodeChef