| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 493750 | ahmeteren | Cluedo (IOI10_cluedo) | C++17 | 14 ms | 276 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 <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve()
{
int a, b, c;
a = b = c = 1;
while(true)
{
int x = Theory(a, b, c);
if(x == 1)
a++;
else if(x == 2)
b++;
else if(x == 3)
c++;
else
return ;
}
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
