| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 342679 | Iwanttobreakfree | Cluedo (IOI10_cluedo) | C++98 | 21 ms | 492 KiB |
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 <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
int r,M,L,W;
M=1;
L=1;
W=1;
r = Theory(M,L,W);
while (r!=0){
if (r==1){
M++;
}
else if (r==2){
L++;
}
else if (r==3){
W++;
}
r = Theory(M,L,W);
}
return;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
