# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
286987 | infinite_iq | 콤보 (IOI18_combo) | C++14 | 41 ms | 692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std ;
#include "combo.h"
int n ;
string ans , but = "ABXY" , ret ;
int query ( string s ) {
return press (s) ;
}
void solve () {
string crnt = "" ;
for ( int i = 0 ; i < 3 ; i ++ ) {
crnt += ans ;
crnt += ret [0] ;
crnt += ret [i] ;
}
crnt += ans ;
crnt += ret [1] ;
int x = query ( crnt ) ;
x -= ans .size () ;
if ( x == 0 ) {
ans += ret [2] ;
}
if ( x == 1 ) {
ans += ret [1] ;
}
if ( x == 2 ) {
ans += ret [0] ;
}
}
string guess_sequence ( int N ) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |