# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
341483 | Iwanttobreakfree | Cluedo (IOI10_cluedo) | C++98 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include "grader.h"
#include "cluedo.h"
using namespace std;
int Murderer,Location,Weapon,M,L,W;
int Solve(int A,int B,int C){
if (M!=A){
return 1;
}
else if (L!=B){
return 2;
}
else if (W!=C){
return 3;
}
else{
return 0;
}
}
int main(){
cin>>Murderer>>Location>>Weapon;
M=1;
L=2;
W=3;
while(Solve(Murderer,Location,Weapon)!=0){
cin>>Murderer>>Location>>Weapon;
}
cin>>Murderer>>Location>>Weapon;
M=3;
L=2;
W=1;
while(Solve(Murderer,Location,Weapon)!=0){
cin>>Murderer>>Location>>Weapon;
}
cin>>Murderer>>Location>>Weapon;
M=4;
L=4;
W=4;
while(Solve(Murderer,Location,Weapon)!=0){
cin>>Murderer>>Location>>Weapon;
}
return 0;
}