Submission #232030

#TimeUsernameProblemLanguageResultExecution timeMemory
232030pere_gilCombo (IOI18_combo)C++14
Compilation error
0 ms0 KiB
#include "combo.h" string guess_sequence(int N){ string s=""; 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; }

Compilation message (stderr)

combo.cpp:3:1: error: 'string' does not name a type; did you mean 'stdin'?
    3 | string guess_sequence(int N){
      | ^~~~~~
      | stdin