| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1284186 | ggillianjiang | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB | 
#include "grader.h"
#include "cluedo.h"
#include <cstdio>
#include <utility>
using namespace std;
#define m first.first
#define l first.second
#define w second
/*
int Theory(int mr, int lo, int wp){
   int m2, l2, w2;
   scanf("%d %d %d", &m2, &l2, &w2);
   if(mr!=m2) return 1;
   if(lo!=l2) return 2;
   if(wp!=w2) return 3;
   else return 0;
}
*/
void Solve(){
   pair< pair<int, int> , int> mlw;
   int r = Theory(mlw.m, mlw.l, mlw.w);
   while(r!=0){
      if(r==1) mlw.m++;
      else if(r==2) mlw.l++;
      else mlw.w++;
      r = Theory(mlw.m, mlw.l, mlw.w);
   }
   
   return;
}
int main(){
   Solve();
   return 0;
}
