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 1592. Chinese Watches

Weak tests!
Posted by OpenGL 1 Feb 2009 18:15
On this test my AC solution got WA:

void main()
{
    printf("50000\n");
    for(int i=0;i<25003;i++)
    {
        printf("1:00:08\n");
    };
    for(int i=25003;i<50000;i++)
    {
        printf("1:00:07\n");
    }
};

Right answer is 1:00:08 but my program write 1:00:07
Re: Weak tests!
Posted by Sandro (USU) 8 Feb 2009 19:12
Thank you for test. The problem was rejudged, 63 authors lost AC.
Re: Weak tests!
Posted by Igor9669 1 Jun 2009 00:24
Please change russian statment ("все часы идут вразнобой") to ("некоторые часы идут вразнобой")!!! ;)))
Fixed
Posted by Vladimir Yakovlev (USU) 2 Jun 2009 02:09