| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1043130 | Okassa | Cluedo (IOI10_cluedo) | C++14 | 0 ms | 0 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#define ll long long
using namespace std ;
 
void Solve() {
    ll M=1,L=1,W=1 ;
    ll x=Theory(M,L,W) ;
    
    if (x!=0) {
        while (x!=0) {
        if (x==1) {
            M++ ;
        }else if (x==2) {
            L++ ;
        }else if (x==3) {
            W++ ;
        }
        x=Theory(M,L,W) ;
    }
    }else {
        return ;
}
}
