← Home
For problem statement at 1000-1999/1900-1999/1920-1929/1929/problemC.txt this is a correct solution, but verifier at 1000-1999/1900-1999/1920-1929/1929/verifierC.go ends with wrong answer on test 40
input:
1
5 69 10004052
expected:NO

got:YES


exit status 1 can you fix the verifier? ```go
package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	in := bufio.NewReader(os.Stdin)
	var t int
	fmt.Fscan(in, &t)
	for i := 0; i < t; i++ {
		var k, x, a int64
		fmt.Fscan(in, &k, &x, &a)
		if a*(k-1) > k*x {
			fmt.Println("YES")
		} else {
			fmt.Println("NO")
		}
	}
}
```