| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1369335 | norrawichzzz | 콤보 (IOI18_combo) | C++20 | 15 ms | 492 KiB |
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int N) {
vector<char> guess = {'A', 'B', 'X', 'Y'};
string S = "";
for (int i = 0; i < N; ++i) {
for (auto x : guess) {
string cur = S+x;
if (press(cur) == i+1) {
S=cur;
break;
}
}
}
return S;
}
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
