Submission #232218

#TimeUsernameProblemLanguageResultExecution timeMemory
232218pere_gilCombo (IOI18_combo)C++14
Compilation error
0 ms0 KiB
#include "combo.h"
#include <iostream>

unsing namespace std;

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;
        }
    }
}

Compilation message (stderr)

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