Submission #1222113

#TimeUsernameProblemLanguageResultExecution timeMemory
1222113dianaCombo (IOI18_combo)C++20
5 / 100
1 ms408 KiB
#include "combo.h" #include <bits/stdc++.h> using namespace std; string guess_sequence(int N) { string c[4] = {"A", "X", "B", "Y"}; for(int i=0; i<4; i++) for(int j=0; j<4; j++) for(int k=0; k<4; k++) { string s = c[i] + c[j] + c[k]; int c = press(s); if(c == 3) return s; } }

Compilation message (stderr)

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