Submission #367331

#TimeUsernameProblemLanguageResultExecution timeMemory
367331Limay123Cluedo (IOI10_cluedo)C++14
0 / 100
0 ms256 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int as = 1, l = 1, a = 1;
   int pista = Theory(as,l,a);
   
    if(pista == 0){
        return;
    }
    else{
        if(pista == 1){
          as++;  
        }
        else if(pista == 2){
          l++;
        }
        else if(pista == 3){
          a++;
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...