이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "cluedo.h"
#include "grader.h"
void Solve(){
int st1, st2, st3;
st1=rand()%6 + 1;
st2=rand()%10 + 1;
st3=rand()%6 + 1;
while(true){
int r = Theory(st1, st2, st3);
if(r==0)return;
if(r==1){
st1++;
if(st1>6)st1-=6;
}
if(r==2){
st2++;
if(st2>10)st2-=10;
}
if(r==3){
st3++;
if(st3>6)st3-=6;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |