제출 #1267021

#제출 시각아이디문제언어결과실행 시간메모리
1267021ti24dung_ntCluedo (IOI10_cluedo)C++20
0 / 100
0 ms416 KiB
#include<bits/stdc++.h>
using namespace std;

void Solve()
{
    int murd = 1, loca = 1, weap = 1;
    while(true)
    {
        cout << "Theory(" << murd << ", " << loca << ", " << weap << ")" << endl;
        cout.flush();

        int type;
        cin >> type;
        if(type == 0) return;
        else if(type == 1) ++murd;
        else if(type == 2) ++loca;
        else ++weap;
    }

}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...