# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1006845 | GTA | 콤보 (IOI18_combo) | C++17 | 2 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
#define fr(m,n,k) for(int m=n;m<=k;m++)
int n;
string guess_sequence(int N) {
n = N;
string v = "ABXY";
string p;
int a;
fr(j, 0, 3) {
p = v[j];
int x = press(p);
if (x == 1) {
a = j;
break;
}
}
p = v[a];
fr(i, 1, n) {
fr(j, 0, 3) {
if (j == a) continue;
p += v[j];
int x = press(p);
if (x == i) {
break;
}
else p.erase(--p.end());
if (j == 2) {
p += v[3];
break;
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |