# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1043114 | 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>
#include <vector>
#define ll long long
using namespace std ;
void Solve() {
ll M=1,L=1,W=1,t=0 ;
ll x=Theory(M,L,W) ;
if (x==0) {
return ;
}else {
t++ ;
if (x==1) {
return 1;
}else if (x==2) {
return 2 ;
}else if (x==3) {
return 3 ;
}
}
}
int main() {
Solve() ;
cout << "OK " << t ;
}