제출 #870610

#제출 시각아이디문제언어결과실행 시간메모리
870610_uros9Cluedo (IOI10_cluedo)C++17
100 / 100
6 ms596 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int a,b,c;
   a=b=c=1;
   int gg=1;
   while(gg!=0){
        gg=Theory(a,b,c);
        if(gg==1)
            a++;
        if(gg==2)
            b++;
        if(gg==3)
            c++;
   }
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...