← Home
For problem statement at 2000-2999/2100-2199/2140-2149/2145/problemA.txt this is a correct solution, but verifier at 2000-2999/2100-2199/2140-2149/2145/verifierA.go ends with All 203 tests passed can you fix the verifier? ```go
package main

import "fmt"

func main() {
    var t int
    fmt.Scan(&t)
    for i := 0; i < t; i++ {
        var n int
        fmt.Scan(&n)
        r := n % 3
        x := (3 - r) % 3
        fmt.Println(x)
    }
}
```