| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1307650 | SW_143 | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include "cluedo.h"
#include <vector>
using namespace std;
void Solve()
{
int M, L, W; M = L = W = 1;
while(true)
{
int res = Theory(M, L, W);
if(res == 0) return;
if (res == 1)
{
M++;
}
else if (res == 2)
{
L++;
}
else if (res == 3)
{
W++;
}
}
}
