For problem statement at 2000-2999/2000-2099/2070-2079/2071/problemA.txt this is a correct solution, but verifier at 2000-2999/2000-2099/2070-2079/2071/verifierA.go ends with All 204 tests passed. can you fix the verifier? package main
import (
"fmt"
)
func main() {
var t int
fmt.Scan(&t)
for i := 0; i < t; i++ {
var k int
fmt.Scan(&k)
if k%3 == 1 {
fmt.Println("YES")
} else {
fmt.Println("NO")
}
}
}