← Home
For problem statement at 0-999/0-99/70-79/71/problemB.txt this is a correct solution, but verifier at 0-999/0-99/70-79/71/verifierB.go ends with All tests passed can you fix the verifier? ```go
package main

import "fmt"

func main() {
	var n, k, t int
	fmt.Scan(&n, &k, &t)

	totalSaturation := (n * k * t) / 100

	for i := 0; i < n; i++ {
		current := 0
		if totalSaturation >= k {
			current = k
		} else {
			current = totalSaturation
		}
		totalSaturation -= current

		if i > 0 {
			fmt.Print(" ")
		}
		fmt.Print(current)
	}
	fmt.Println()
}
```