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

Обсуждение задачи 1257. Переносы

Something strange...
Послано Loky_Yuri [USTU] 15 май 2007 17:25
I now that the first test for this problem is the sample (I check it with a stupid programm which output the strings of sample, and this programm has WA#2).
And for this test my REAL program give the corret answer, but when I try to submit it I have ACCESS VIOLATION. I try even do all my arrays [1..1000] and replace string on ansistring (i write in PASCAL), but all my attempts was failed.
Can anybody help me?
PS If you want I can show my program
Re: It make me crazy!
Послано Loky_Yuri [USTU] 16 май 2007 19:39
[Code deleted by author]

Edited by author 16.05.2007 21:22
Re: It make me crazy!
Послано ArcSTU Team 16 май 2007 20:49
You call  CutString(str);  with str='' ant it fails

while dl <> length(str) do
begin
dl := length(str);
//if dl=0 then break;
CutString(str);      //162 string
end;


Kirill

Edited by author 16.05.2007 20:51
Re: It make me crazy!
Послано Loky_Yuri [USTU] 16 май 2007 21:24
Thanks a lot!!!