# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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; }