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

import "fmt"

func main() {
	var t int
	fmt.Scan(&t)
	for _ = range make([]int, t) {
		var n int
		fmt.Scan(&n)
		sum := 0
		count_zero := 0
		for i := 0; i < n; i++ {
			var x int
			fmt.Scan(&x)
			sum += x
			if x == 0 {
				count_zero++
			}
		}
		fmt.Println(sum + count_zero)
	}
}
```