| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1307618 | LBP139 | Cluedo (IOI10_cluedo) | C++20 | 1 ms | 332 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int t;
for(int i=1;i>=0;i++){
for(int j=1;j>=0;j++){
for(int k=1;k>=0;k++){
t=Theory(i, j, k);
if(t==0){
return;
}
if(t==1){
j--;
k--;
}
if(t==2){
i--;
k--;
}
if(t==3){
i--;
j--;
}
}
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
