For problem statement at 1000-1999/1100-1199/1100-1109/1102/problemC.txt this is a correct solution, but verifier at 1000-1999/1100-1199/1100-1109/1102/verifierC.go ends with All tests passed can you fix the verifier? package main
import (
"bufio"
"fmt"
"os"
)
func main() {
in := bufio.NewReader(os.Stdin)
var n, x, y int
fmt.Fscan(in, &n, &x, &y)
if x > y {
fmt.Println(n)
return
}
cnt := 0
for i := 0; i < n; i++ {
var a int
fmt.Fscan(in, &a)
if a <= x {
cnt++
}
}
fmt.Println((cnt + 1) / 2)
}