# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
986847 | LucaIlie | 콤보 (IOI18_combo) | C++17 | 21 ms | 1472 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <iostream>
using namespace std;
char ch[4] = {'A', 'B', 'X', 'Y' };
char alf[3];
string s;
string guess_sequence( int n ) {
int coins, i, first_letter = -1, j, verific;
for( i = 0; i < 3; i++ ) {
s = ch[i];
if( press(s) == 1 )
first_letter = i;
}
if( first_letter == -1 )
first_letter = 3;
s = ch[first_letter];
//cout << s;
j = 0;
for( i = 0; i < 4; i++ ) {
if( i != first_letter ) {
alf[j] = ch[i];
j++;
}
}
for( i = 1; i < n; i++ ) {
for( j = 0; j < 3; j++ ) {
if( j == 2 ) {
s = s + alf[j];
//cout << alf[j];
} else if( press( s + alf[j] ) == i + 1 ) {
s = s + alf[j];
//cout << alf[j];
break;
}
}
}
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |