Submission #388777

# Submission time Handle Problem Language Result Execution time Memory
388777 2021-04-13T02:01:59 Z Pichon5 Cluedo (IOI10_cluedo) C++17
0 / 100
1000 ms 200 KB
#include "grader.h"
#include "cluedo.h"

void Solve(){
    int a=1,b=1,c=1;
    while(1){
        int C=Theory(a,b,c);
        if(c==0){
            return;
        }
        if(C==1)a++;
        if(C==2)b++;
        if(C==3)c++;
    }
}
# Verdict Execution time Memory Grader output
1 Execution timed out 2869 ms 200 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2770 ms 200 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -