← 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)
		if n%3 == 0 {
			fmt.Println(0)
		} else {
			fmt.Println(3 - (n % 3))
		}
	}
}
```