제출 #783112

#제출 시각아이디문제언어결과실행 시간메모리
783112Mouad_ouj콤보 (IOI18_combo)C++17
0 / 100
1 ms256 KiB
#include<bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int n)
{
    string tab[4]={"A","B","X","Y"};
    string ans="";
    for(int y=0;y<3;y++)
    {
        for(int x=0;x<4;x++)
        {
            if(press(tab[x])==y+1)
            {
                ans+=tab[x];
                break;
            }
        }
    }
    return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...