Submission #567668

# Submission time Handle Problem Language Result Execution time Memory
567668 2022-05-24T02:19:59 Z zaneyu Cop and Robber (BOI14_coprobber) C++14
0 / 100
0 ms 208 KB
#include "coprobber.h"

int start(int N, bool A[MAX_N][MAX_N])
{
    if(N==4){
        return 0;
    }
    return -1;
}

int nextMove(int R){
    return R;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Cop can catch the robber, but start() returned -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB nextMove() returned a value that is either outside 0..N-1 or the new cop position is not a neighbour to the previous one
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Cop can catch the robber, but start() returned -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Cop can catch the robber, but start() returned -1
2 Halted 0 ms 0 KB -