

Strange RUNTIME_ERROR Again
source link: http://codeforces.com/blog/entry/96645
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Recently i was doing 1607F - Robot on the Board 2 Problem and got RUNTIME_ERROR
, Exit code is 2147483647
I used the following lines of code and got ERROR
: 134381582
_i += (A[_i][_j] == 'D');
_i -= (A[_i][_j] == 'U');
_j += (A[_i][_j] == 'R');
_j -= (A[_i][_j] == 'L');
while as using these lines of code got AC
: 134381437
if (A[_i][_j] == 'D')
_i++;
else if (A[_i][_j] == 'U')
_i--;
else if (A[_i][_j] == 'L')
_j--;
else if (A[_i][_j] == 'R')
_j++;
on my LOCAL MACHINE it gives me WRONG
output. I am confused why is this happening. Let me know if i am missing something
Recommend
-
9
Golang runtime error with macOS Sierra 发表于2016-09-26 Golang runtime error with macOS Sierra If you are...
-
3
HomeNews
-
13
My c++ code is working fine in local ide, but it is throwing runtime error (Exit code is -1073741819) in codeforces
-
8
why i am getting runtime error in half test cases ? why i am getting runtime error in half test cases ?...
-
7
Help with runtime error Help with runtime error ...
-
4
Runtime Error for reverse Loop Runtime Error for reverse Loop
-
6
Can anyone explain why I am getting runtime error for this problem? → Pay attention Before contestCodeforces Round #777...
-
9
Mr.NickName's blog
-
1
Strange error from Nvidia’s apex library apex is a mixed training library from Nvidia. I have been using it since I got an R...
-
7
A strange error in BigQuery Two days ago we met a weird error when running a select through BigQuery Python API:
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK