| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1099339 | Raj | Cluedo (IOI10_cluedo) | C++11 | 9 ms | 344 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
int Theory(int m, int l, int w);
void Solve()
{
int i=1,j=1,k=1,sol=0;
sol=Theory(i,j,k);
while(sol!=0)
{
if(sol==1)
i++;
else if(sol==2)
j++;
else
k++;
sol=Theory(i,j,k);
}
return;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
