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

W T F ???!
Posted by JTim 9 Nov 2007 22:54
I dont know, why its happened, but when i replace the following lines of my code:
"
 const
   MaxN = 100;
   MaxL = 8;
 type
   TWord = string[MaxL];
   TVoc  = array [1..MaxN] of TWord;
"
to
"
 const
   MaxN = 150;
   MaxL = 20;
 type
   TWord = string[MaxL];
   TVoc  = array [1..MaxN] of TWord;
"
i've got AC!

Что это за фигня??!
Re: W T F ???!
Posted by Vladimir Yakovlev (USU) 11 Nov 2007 11:45
Words in the text can be longer than 8 characters
Re: W T F ???!
Posted by JTim 11 Nov 2007 20:16
Sorry, my bug