← Home
For problem statement at 0-999/600-699/660-669/661/problemE.txt this is a correct solution, but verifier at 0-999/600-699/660-669/661/verifierE.go ends with All 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 x int
		fmt.Scan(&x)
		if x%3 == 0 || x%5 == 0 {
			fmt.Println("YES")
		} else {
			fmt.Println("NO")
		}
	}
}