Submission #232034

#TimeUsernameProblemLanguageResultExecution timeMemory
232034pere_gilCombo (IOI18_combo)C++14
0 / 100
1 ms200 KiB
#include "combo.h" std::string guess_sequence(int N){ std::string s=""; std::string re=""; if(press("A")>0){ s="A"; re="BXY"; } if(press("B")>0){ s="B"; re="AXY"; } if(press("X")>0){ s="X"; re="ABY"; } if(press("Y")>0){ s="Y"; re="ABX"; } bool ja; for(int i=0;i<N;i++){ ja=true; if(ja and press(s+re[0])>0){ s+=re[0]; ja=false; } if(ja and press(s+re[1])>0){ s+=re[1]; ja=false; } if(ja and press(s+re[2])>0){ s+=re[2]; ja=false; } } return s; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...