# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176011 | tt_13 | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 392 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int r,m=1,l=1,w=1;
r = Theory(m,l,w);
while(r)
{
r=Theory(m,l,w);
if (r == 0) return;
else if(r==1) m++;
else if(r==2) l++;
else w++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |