이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <string>
using namespace std;
string guess_sequence(int N)
{
for(string A:{"A", "B", "X", "Y"})
{
for(string B:{"A", "B", "X", "Y"})
{
if(A == B) continue;
for(string C:{"A", "B", "X", "Y"})
{
if(A == C) continue;
if(press(A+B+C) == 3) return A+B+C;
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:19:1: warning: control reaches end of non-void function [-Wreturn-type]
19 | }
| ^| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |