# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1136220 | mnbvcxz123 | Play Onwards (FXCUP4_onward) | C++20 | 0 ms | 328 KiB |
#include "make.h"
std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
std::string R;
for(int i=0;i<M;i++) R += 'a';
return R;
}
#include "guess.h"
std::string GuessWord(int M, std::string YH){
std::string R;
for(int i=0;i<M;i++) R += 'a';
return R;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |