제출 #1175170

#제출 시각아이디문제언어결과실행 시간메모리
1175170natnichaCluedo (IOI10_cluedo)C++20
50 / 100
9 ms392 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int r;
   int m=1,l=1,w=1;
   while(true){
        if(Theory(m,l,w)==0) return;
        if(Theory(m,l,w)==1){
            m++;
        }else if(Theory(m,l,w)==2){
            l++;
        }else if(Theory(m,l,w)==3){
            w++;
        }
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...