ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1089. Verification with the Dictionary

If you got WA,there are something that should pay attention!
Posted by xing 19 Feb 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!
Posted by abc 7 Nov 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......
Posted by New CD 21 Dec 2002 17:46
case:
--------
pencil
#
pencii-box penc-ii pencii'box pen'cii
--------
What is the output?
Re: I want know......
Posted by Maigo Akisame 8 Jun 2004 09:42
pencil-box penc-ii pencil'box pen'cii
2
Here is something...
Posted by Dilyan 11 Jul 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!
Posted by Maxim Korchyomkin 23 Jul 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...
Posted by Rustam 16 Oct 2008 18:24
it was very useful! thx a lot!