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 1438. Time Limit Exceeded

Test #4 is incorrect or wrong
Posted by Alias (Alexander Prudaev) 12 Aug 2007 20:43
i am sure that my program is ok, but wa#4
Re: Test #4 is incorrect or wrong
Posted by Vedernikoff Sergey 7 Sep 2007 04:01
Absolutely agree. There must be some unappropriate program...
Re: Test #4 is incorrect or wrong
Posted by svr 7 Sep 2007 21:22
Very many authors has AC and test4 passed.
It's impossible to be mistaken for all!
There for there is chance to find yours mistakes and to improve your opportunities.

Edited by author 07.09.2007 21:35
Re: Test #4 is incorrect or wrong
Posted by Alias (Alexander Prudaev) 7 Sep 2007 21:32
i have got AC.
try test like this

a = 1;
goto label1
a = 2
label1:
print a

or

label1:
a = 1
goto label1
a = 2
print a
Re: Test #4 is incorrect or wrong
Posted by AterLux 11 Sep 2010 02:55
try this. I was mistaken, when same label used for forward and backward reference. Fixed and got AC ;)

x = 0
goto l

print 0

l:
x = x + 1
print x

if x < 3 goto l

Edited by author 11.09.2010 05:41