bool jump(int x);
void escape(int n){
bool indicator = true;
while(true){
bool old_indicator = indicator;
indicator = jump(1);
if(old_indicator == false && indicator == true) break;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
The exit was not found. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
The exit was not found. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
The exit was not found. |
2 |
Halted |
0 ms |
0 KB |
- |