Hello, in short, I'm trying to solve 1999E - Тройные операции with the following solution: 276991813
While testing locally, the solution correctly returns the expected output for the sample test case, but the judge says the following: "wrong answer 4th numbers differ — expected: '263', found: '262' "
I tried some online compilers and they also return the expected output with my solution. Why is the judge returning a different output?? Any help would be appreciated, thanks.
it is due to floating point precision. you are using log(a)/log(b) depending on enviroment it can be slightly different, causing your answer to deviate. Try avoid using floating point calculation, or introduce floor/ceil function.
i see. after writing this, i stubbornly submitted to the judge with a different gcc version and managed to get a TLE instead of a WA. will be more careful about precision errors from now, thanks for the help.