| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1289366 | aren_dance | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void solve(){
int i=1;
int j=1;
int k=1;
while(true){
int x=Theory(i,j,k);
if(x==1){
i++;
}
if(x==2){
j++;
}
if(x==3){
k++;
}
}
}
