When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

Abdulrahman98's blog

By Abdulrahman98, history, 4 years ago, In English

I have submitted this code to this problem https://codeforces.com/contest/514/problem/B but got wrong answer, i went to the tutorial and found the same method, so i saw some accepted codes and i had the exact code, but i still don't know why I'm getting wrong answer this is my code: https://codeforces.com/contest/514/submission/62895602 and this is an accepted code: https://codeforces.com/contest/514/submission/17915278 would be nice to know why.

  • Vote: I like it
  • 0
  • Vote: I do not like it

| Write comment?
»
4 years ago, # |
Rev. 3   Vote: I like it 0 Vote: I do not like it

For some reason putting "set double st;" inside the main solved the problem, i just dont know why that even made a problem in the first place, no idea XD

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Seems like precision problems. I changed your code a bit and instead of using double I used long double and it got AC.

Link for submission: 62939486

From this article it turns out that long double has greater precision than double but it depends on compiler.