제출 #636395

#제출 시각아이디문제언어결과실행 시간메모리
636395Son콤보 (IOI18_combo)C++14
컴파일 에러
0 ms0 KiB
string guessing( int n ){ string ans = ""; for ( int i = 1; i <= n; i++ ){ string t = ans + "A"; if ( press(t) == i ) { ans += "A"; continue; } t = ans + "B"; if ( press(t) == i ){ ans += "B"; continue; } t = ans + "X"; if ( press(t) == i ){ ans += "X"; continue; } ans += "Y"; } return (ans); }

컴파일 시 표준 에러 (stderr) 메시지

combo.cpp:2:1: error: 'string' does not name a type
    2 | string guessing( int n ){
      | ^~~~~~