| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 304348 | MasterTaster | Cluedo (IOI10_cluedo) | C++14 | 12 ms | 256 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 "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
int m, l, v;
m=l=v=1;
int teorija=Theory(m, l, v);
while (teorija)
{
if (teorija==1) m++;
else if (teorija==2) l++;
else v++;
teorija=Theory(m, l, v);
}
return;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
