For problem statement at 2000-2999/2100-2199/2170-2179/2171/problemH.txt this is a correct solution, but verifier at 2000-2999/2100-2199/2170-2179/2171/verifierH.go ends with reference runtime error on test 1: exec: "ref2171H.bin": executable file not found in $PATH can you fix the verifier? package main
import (
"bufio"
"fmt"
"os"
"sort"
)
func main() {
in := bufio.NewReader(os.Stdin)
var g, c, l int
if _, err := fmt.Fscan(in, &g, &c, &l); err != nil {
return
}
a := []int{g, c, l}
sort.Ints(a)
if a[2]-a[0] >= 10 {
fmt.Println("check again")
} else {
fmt.Printf("final %d\n", a[1])
}
}