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 1362. Classmates 2

To admin: Weak tests
Posted by Smilodon_am [Obninsk INPE] 22 Aug 2011 13:24
My AC (accepted) program (numbers of submits: 3740606 or 2776983) has BIG Time Limit at home on this test:
100000
2 3 [...] 99999 100000 0
0
[... number "0" repeatedly 99999 times]
0
1

This test may be got by this simple program (on Pascal):
var
  I, N: Longint;
begin
  N := 100000;
  Writeln(N);
  for I := 2 to N do
    Write(I, ' ');
  Writeln('0');
  for I := 2 to N do
    Writeln('0');
  Write('1');
end.

Please, add this test and its analogs to test base.

Edited by author 22.08.2011 13:52
Re: To admin: Weak tests
Posted by Vladimir Yakovlev (USU) 1 Sep 2011 15:34
Your test is added. 26 authors lost AC after rejudge.
Thank you!