# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1214465 | cuenta_verdadera | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include <cassert>
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
void Solve(){
int r,a=0,b=0,c=0;
r = Theory(a,b,c);
if (r == 1) Theory(a++,b,c);
if (r == 2) Theory(a,b++,c);
if (r == 3) Theory(a,b,c++);
if (r == 0) return;
}