# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1132184 | finalventure | Cluedo (IOI10_cluedo) | C++17 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
vector<int> arr(4) {0, 6, 10, 6};
int x = Theory(arr[1], arr[2], arr[3]);
while(x)
{
x = Theory(arr[1], arr[2], arr[3]);
--arr[x];
}
return;
}