ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1058. Шоколад

Achtung!
Послано Igor Y. Ludov 17 сен 2005 07:51
This problem contains one unobvious and unpleasant trick. In statement it is said that result must be output with "accuracy to 0.0001". But in fact you must output result rounded up to fourth digit after decimal point. So, if you output answer with some additional precision, you'll get WA. For example, I got "Accepted" when corrected line
  writeln (finres:0:5);
to
  writeln (finres:0:4);
in my program.
Re: Achtung!
Послано DWED 24 июл 2008 18:29
It means that your solution is not very accurate. My solution outputs a value "as is" without any truncation (just System.out.println(min);) and gets AC.