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

Обсуждение задачи 1135. Новобранцы

I suspect the test case #13 have some other characters, not only '>', '<' and CR/LF.
Послано RoBa @ TJU 20 сен 2006 14:30
att

Edited by author 20.09.2006 14:31
Re: I suspect the test case #13 have some other characters, not only '>', '<' and CR/LF.
Послано Eugene Zavgorodny 23 июл 2007 19:43
Yes you are right. When I am read (cin >> s), where s is string, I got WA13. When I am read by getchar, and bring in string '>' or '<', I got AC
Re: I suspect the test case #13 have some other characters, not only '>', '<' and CR/LF.
Послано Sandro (USU) 23 июл 2007 21:58
You can not use cin >> s because there are CR/LF characters in the input. For example such test is correct:

4
>>
<<

P.S. Test 13 is correct now.

Edited by author 23.07.2007 22:31