package main
import (
“fmt”
)
func main(){
var i, numbers, div, input, count int64
fmt.Scanf("%d %d", &numbers, &div)
for ;i<numbers;i++ {
fmt.Scanf("%d", &input)
if input%div == 0{
count += 1
}
}
fmt.Println(count, "count")
}
Above is the solution of the problem, https://www.codechef.com/problems/INTEST . But after submission, I’m getting “Time Limit Exceeded”. Please help.