← Home
For problem statement at 0-999/600-699/630-639/630/problemB.txt this is a correct solution, but verifier at 0-999/600-699/630-639/630/verifierB.go ends with case 1 failed: expected "36543120309.058311" got "36543120309.0583114624"
input:4704 1442326388
exit status 1 can you fix the verifier? package main

import (
	"fmt"
	"math"
)

func main() {
	var n, t float64
	fmt.Scan(&n, &t)
	fmt.Printf("%.10f\n", n*math.Pow(1.000000011, t))
}