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 1474. About Frogs

Dlougach Jacob Bug in checker [2] // Problem 1474. About Frogs 23 Oct 2006 21:41
I've submitted the following solution, and it got AC:

#include <cstdio>

int main(void)
{
    int N;
    scanf("%d", &N);
    if (N==1)
    {
        printf("3\n2 0 1\n");
    } else
    {
        printf("0\n");
    }
    return 0;
}


Probably, this is a bug in checker
Sandro (USU) Fixed. Thank you (-) // Problem 1474. About Frogs 24 Oct 2006 01:57
Jerry Re: Bug in checker // Problem 1474. About Frogs 18 Aug 2007 19:28
Shame on you!