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