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

Bug in checker
Posted by Dlougach Jacob 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
Fixed. Thank you (-)
Posted by Sandro (USU) 24 Oct 2006 01:57
Re: Bug in checker
Posted by Jerry 18 Aug 2007 19:28
Shame on you!