제출 #1207386

#제출 시각아이디문제언어결과실행 시간메모리
1207386That_Salamander콤보 (IOI18_combo)C++20
5 / 100
0 ms408 KiB
#include <bits/stdc++.h> using namespace std; #include "combo.h" char OPTIONS[] = "ABXY"; string guess_sequence(int N) { for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { for (int k = 0; k < 4; k++) { string s = string("") + OPTIONS[i] + OPTIONS[j] + OPTIONS[k]; if (press(s) == 3) return s; } } } }

컴파일 시 표준 에러 (stderr) 메시지

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:19:1: warning: control reaches end of non-void function [-Wreturn-type]
   19 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...