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

Alias (Alexander Prudaev) Test #4 is incorrect or wrong [4] // Problem 1438. Time Limit Exceeded 12 Aug 2007 20:43
i am sure that my program is ok, but wa#4
Vedernikoff Sergey Re: Test #4 is incorrect or wrong [3] // Problem 1438. Time Limit Exceeded 7 Sep 2007 04:01
Absolutely agree. There must be some unappropriate program...
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
Alias (Alexander Prudaev) Re: Test #4 is incorrect or wrong // Problem 1438. Time Limit Exceeded 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
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