이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
using namespace std;
#define debug
#define pb push_back
#define lp(i,a,b) for(int i=a;i<b;i++)
#define pii pair<int,int>
#define ll long long
#define ff first
#define ss second
#define pb push_back
#include <assert.h>>
#define mk make_pair
string guess_sequence(int tam)
{
if(tam != 3) while(1);
string p ;
p.resize( tam ) ;
char c[4] = {'A' , 'B' , 'X' , 'Y'} ;
lp(i,0,4)
lp(j,0,4)
lp(k,0,4)
{
p[0] = c[i] ;
p[1] = c[j] ;
p[2] = c[k] ;
if( press(p) == tam ) return p ;
}
}
컴파일 시 표준 에러 (stderr) 메시지
combo.cpp:11:20: warning: extra tokens at end of #include directive
11 | #include <assert.h>>
| ^
combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:35:1: warning: control reaches end of non-void function [-Wreturn-type]
35 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |