Help in Interactive Problem

I am using python for solving the interactive problem and I do know about the verdict (WA: -1) but this verdict is not known to me… and I tried flushing the output using stdout.flush() and print(,flush=True) as well, none of them worked!

Thanks.

1 Like

TLE(-1.000000) means that the idleness limit has exceeded. You are not inputting/outputting when required.

You should check your code and make sure you read all the inputs given by the judge.

2 Likes

can you also tell about WA(-1.000000)

It means you are exceeding number of questions you can ask.

thanks😃

This post was flagged by the community and is temporarily hidden.

take input from judge corresponding to every output. your error is idle time limit exceeded

1 Like

It happened to me. In my case i wrote the code in c++ and so adding cout.flush() worked.
You can refer to this post Interactive Problems and the way to deal with them!

Thanks!! Now figured it out, was taking extra input from judge!..

Please, you should not discuss this here!!..