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

Обсуждение задачи 1437. ACM для ГСМ

Using readln
Послано Ivanidze 25 фев 2006 17:49
If i used
readln(a);
readln(b);
readln(c);
I got WA on test #12
if i used
read(a);
read(b);
read(c);
i pass that test
What the?
Re: Using readln
Послано Zou Yuhan 25 фев 2006 17:53
faint!!

me too!!
Re: Using readln
Послано EnotsRevolution 25 фев 2006 20:10
IMHO:
readln() reads EOLN from input buffer (eq. 0x13 or 0x10)
From problem:
"Each of the three input lines contains an integer..."
but third line of file may contain EOF (no EOLN) at end and this don't reads by readln(); may be there are mistake...
But I use C++ and I also can have errors in Pascal...

p.s. Sorry for my English.
Tests will be corrected soon
Послано Vladimir Yakovlev (USU) 26 фев 2006 12:03