| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1330811 | Taxiradio | Combo (IOI18_combo) | C++20 | 21 ms | 456 KiB |
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
std::string guess_sequence(int N) {
vector<char> a = {'A' , 'B' , 'X' , 'Y'};
string b = "";
for(int i = 0; i < N; i++){
for(int j = 0; j < 4; j++){
b.push_back(a[j]);
if(i+1 == press(b))break;
b.pop_back();
}
}
return b;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
