package main import ( "bufio" "fmt" "os" "strconv" "strings" ) func main() { // 使用 map 存储需要判断的数字,查询效率为 O(1) noNumbers := map[int64]bool{ 2: true, 3: true, 5: true, 6: true, 8: true, 11: true, 14: true, } scanner := bufio.NewScanner(os.Stdin) // 读取测试用...