# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
147675 | 2019-08-30T11:39:11 Z | 하이(#3650, heiler) | Play Onwards (FXCUP4_onward) | C++17 | 0 ms | 0 KB |
#include "make.h" std::string MakeWord(int N, int M, std::vector<std::string>) { std::string ret = ""; for(int i=0;i<M;i++) { ret += (Dict[N-1][i]-'a'+1)%26 + 'a'; } return ret; }