| 
 | 
вернуться в форумTo admin: Weak tests 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 Your test is added. 26 authors lost AC after rejudge. Thank you!  |  
  | 
|