# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
147911 | alex9801 (#201) | Play Onwards (FXCUP4_onward) | C++17 | 13 ms | 1296 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 <bits/stdc++.h>
using namespace std;
#include "make.h"
std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
string r;
for(int i = 0; i < M; i++)
r += 'a';
return r;
}
#include <bits/stdc++.h>
using namespace std;
#include "guess.h"
std::string GuessWord(int M, std::string YH){
string r;
for(int i = 0; i < M; i++)
r += 'a';
return r;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |