# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1215174 | porquenomedejainiciarsesion | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 408 KiB |
#include<bits/stdc++.h>
#include "cluedo.h"
#include "grader.h"
void Solve(){
int a=1,b=1,c=1;
int xd=Theory(a,b,c);
while(xd!=0){
if(xd==1){
a++;
}else if(xd==2){
b++;
}else if(xd==3){
c++;
}
xd=Theory(a,b,c);
}
return;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |