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 1393. Average Common Prefix

Could you tell me what is the test 29?
Posted by yuyan 11 Mar 2009 13:26
    I got WA#29 so many times.
    I can't find the mistakes from my program.
    By the way,is that something wrong with my "reading" part?
    Here is my reaing part:
    procedure init;
  begin
    readln(m);
    for i:=1 to m do
      begin
        read(ch);
        a[i]:=ord(ch);
      end;
    readln;
  end;
Re: Could you tell me what is the test 29?
Posted by Medium 16 Mar 2009 01:42
250000
AA...A

Edited by author 16.03.2009 19:41
letters are capital of course (-)
Posted by Medium 16 Mar 2009 19:41
Re: Could you tell me what is the test 29?
Posted by Nikola 2 Apr 2009 22:30
And test 30?
I reach both memory limit and time limit.