Submission #280408

#TimeUsernameProblemLanguageResultExecution timeMemory
280408amallaCombo (IOI18_combo)C++17
0 / 100
1 ms200 KiB
#include "combo.h" #include<bits/stdc++.h> using namespace std; string guess_sequence(int N) { string p = "", test = ""; int coins = 0; for (int i = 0; i<N; ++i) { char best = ' '; test += ' '; for (auto x : "ABXY") { test[i] = x; if (coins<press(test)) best = x; } p += best; test[i] = p[i]; } return p; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...