This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include "cluedo.h"
#include <vector>
using namespace std;
void Solve(){
int r=1;
vector<int> val={1,1,1};
vector<bool> solved={false,false,false};
while(r != 0){
r = Theory(val[0],val[1],val[2]);
if(r == 1){
val[0] += 1;
}else if(r == 2){
val[1] += 1;
}else if(r == 3){
val[2] += 1;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |