# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1128563 | mbalsells | 콤보 (IOI18_combo) | C++20 | 10 ms | 512 KiB |
#include "combo.h"
using namespace std;
// ABXY
string buttons = "ABXY";
int get_index(string& s){
for (int i = 0; i < 4; ++i){
if (s[0] == buttons[i]) return i;
}
}
char get_first(){
if (press("AB") > 0){
if (press("A")) return 'A';
else return 'B';
}
else {
if (press("X") == 1) return 'X';
else return 'Y';
}
}
char get_next(string s){
int index = get_index(s);
string left_buttons;
for (int i = 1; i <= 3; ++i){
left_buttons.push_back(buttons[(index + i) % 4]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |