# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
148255 | 2019-08-31T18:35:23 Z | Redux(#3754, Redux) | Play Onwards (FXCUP4_onward) | C++17 | 0 ms | 0 KB |
#include "make.h" #include <bits/stdc++.h> string MakeWord (int N, int M, vector<string> Dict) { string ret = ""; for(int i = 0; i < M; i++) ret += 'a'; return ret; }