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

Обсуждение задачи 1089. Проверка со словарём

If you got WA,there are something that should pay attention!
Послано xing 19 фев 2002 12:11
1.There is one empty line in the end of text. You should not output
this line. But there are maybe some empty lines in the middle of
text, you should output these lines.

2.The lenght of words in the vocabulary may be larger than 8,the total
of words in the vocabulary may be exceed 100.
Re: If you got WA,there are something that should pay attention!
Послано abc 7 ноя 2002 11:20
> 1.There is one empty line in the end of text. You should not output
> this line. But there are maybe some empty lines in the middle of
> text, you should output these lines.
>
> 2.The lenght of words in the vocabulary may be larger than 8,the
total
> of words in the vocabulary may be exceed 100.

I think, for the second point, you are refering to the text body
rather than the vocabulary list. am i right?
I want know......
Послано New CD 21 дек 2002 17:46
case:
--------
pencil
#
pencii-box penc-ii pencii'box pen'cii
--------
What is the output?
Re: I want know......
Послано Maigo Akisame 8 июн 2004 09:42
pencil-box penc-ii pencil'box pen'cii
2
Here is something...
Послано Dilyan 11 июл 2005 04:32
... which you should pay atantion to

input:
try
#
try try try
output:
try try try
0
Re: If you got WA,there are something that should pay attention!
Послано Maxim Korchyomkin 23 июл 2005 22:37
*** 1.There is one empty line in the end of text. You should not output
this line. But there are maybe some empty lines in the middle of
text, you should output these lines.

*** 2.The lenght of words in the vocabulary may be larger than 8,the total
of words in the vocabulary may be exceed 100.

(*******************************************************)

THESE TWO TIPS ARE BULL SHIT !!!!

when i solve this task then i don't care about last empty line and i have a dictionary on 100 words with length of 8 symbols.

there is my dictionary decription:

var
 dic: array [1..100] of string[8];

Edited by author 23.07.2005 22:38
Re: Here is something...
Послано Rustam 16 окт 2008 18:24
it was very useful! thx a lot!