Блог пользователя suggi_d_luffy

Автор suggi_d_luffy, история, 9 лет назад, По-английски

Giving WA.Where is the error? Problem link : 147 — Dollars Solution link : SOLUTION

Теги wa, help
  • Проголосовать: нравится
  • -3
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

The error comes from converting double to int. Sometimes compilers don't work as expected and, for example, instead of 11 you might get 10.999999999999999999, which rounds down to 10.

Here's your code with string parsing and integers (AC): Corrected code