# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
147717 | 하이 (#201) | Play Onwards (FXCUP4_onward) | C++17 | 13 ms | 1204 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "make.h"
using namespace std;
std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
string ret = "";
for(int i=0;i<M;i++)
ret += "a";
return ret;
}
#include "guess.h"
using namespace std;
std::string GuessWord(int M, std::string YH){
string ret = "";
for(int i=0;i<M;i++) {
ret += "a";
}
return ret;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |