제출 #148309

#제출 시각아이디문제언어결과실행 시간메모리
148309IamBaba (#201)Play Onwards (FXCUP4_onward)C++17
100 / 100
12 ms1116 KiB
#include "make.h"

std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
	std::string ret;
	for(int i = 0; i < M; ++i) ret.push_back('a');
	return ret;
}
#include "guess.h"

std::string GuessWord(int M, std::string YH){
	std::string ret;
	for(int i = 0; i < M; ++i) ret.push_back('a');
	return ret;
}
#Verdict Execution timeMemoryGrader output
Fetching results...