# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1276013 | cjspd_oly | Cluedo (IOI10_cluedo) | C++17 | 4 ms | 384 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve()
{
int i = 1, j = 1, k = 1;
while (true)
{
int wrong = Theory(i, j, k);
switch (wrong)
{
case 0:
return;
case 1:
++i;
break;
case 2:
++j;
break;
case 3:
++k;
break;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |