Yeah.. I constantly get this error when i click any problem name from 'My Submissions' and 'My Statistics' page.
Also when trying to view also other's statistics.. Its irritating
Is there any fix for this ??
I got AC after 6 WA :) I would like to make few clarifications so tat it might help others: 1. As said by others, there are no negative inputs. 2. The problem states that, the number to be converted may contain invalid digits . But, it may contain invalid characters too! Example: 10 2 A4 Here A4 is ...
Thanks Jan for your reply. I wonder how you generated those test cases on which my code fails exactly :o I've corrected the mistake. And I checked all the previous i/o given by you and soyoja. But still WA . Here is my corrected code... #include<iostream> // acm-10371 #include<string> using namespac...
Got AC after 10 RTEs :) Thanks a million mf . Initially when i had difficulty in reading input in Java, i followed your suggestion here... http://online-judge.uva.es/board/viewtopic.php?p=73516&sid=843c80097f2514ef2d73223abcb10e02#p73516 Its nice to see the same person helping me now :wink: Try ...
Thanks mf for quick reply... 1) Should i use BigInteger? 2) I am getting RTE for another problem also (10519 - REALLY STRANGE). I have posted here... http://online-judge.uva.es/board/viewtopic.php?f=25&t=12321&st=0&sk=t&sd=a&start=30#p95457 Since i'm getting RTE in both programs,...
Hi.. I had posted in Java forum. But no reply :-? So i'm posting here... I solved this problem using C++ (which is my usual language). I am a newbie in Java... I wanted to use Java in UVa. So i chose a easy problem( 10055 ) to start with. But... :o RUNTIME ERROR is the only verdict i'm getting :oops...
I solved this problem long ago using C++ (which is my usual language). I am a newbie in Java... I wanted to use Java in UVa. So i chose a easy problem( 10055 ) to start with. But... :o RUNTIME ERROR is the only verdict i'm getting :oops: I don't think there is any error in algorithm :wink: So i'm po...
I'm getting WA again and again. I have tested all the i/o given by SOYOJA and JAN . ( There were some bugs in my code, which I rectified. Thanks to them.) Now I'm getting same output as theirs... But still WA :oops: I need some more i/o, where my code fails. Here is my code: #include<iostream> // ac...
L might bigger than M add L=L%M in your code I hope it can help you. Just now i got AC, where i considered that L is less than M . One more thing: As the problem states, " the cycle might not begin with the seed! ", I used something like this: initialize count=1; loop // calculate next 'l...